mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
added: - ocamlPackages.fs-io - ocamlPackages.top-closure Cleaned up the dune packages, making the dependencies explicit and removing legacy preBuild steps. Signed-off-by: Ali Caglayan <alizter@gmail.com>
22 lines
353 B
Nix
22 lines
353 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
dune,
|
|
dyn,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "ocamlc-loc";
|
|
inherit (dune) src version;
|
|
|
|
dontAddPrefix = true;
|
|
|
|
propagatedBuildInputs = [ dyn ];
|
|
|
|
meta = {
|
|
description = "Parse ocaml compiler output into structured form";
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|