ocamlPackages.dune-site: init 2.9.1
This commit is contained in:
parent
c535db45ce
commit
40bad15b21
2 changed files with 21 additions and 0 deletions
19
pkgs/development/ocaml-modules/dune-site/default.nix
Normal file
19
pkgs/development/ocaml-modules/dune-site/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{ lib, buildDunePackage, dune_2, dune-private-libs }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "dune-site";
|
||||||
|
inherit (dune_2) src version patches;
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
dontAddPrefix = true;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ dune-private-libs ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A library for embedding location information inside executable and libraries";
|
||||||
|
inherit (dune_2.meta) homepage;
|
||||||
|
maintainers = with lib.maintainers; [ superherointj ];
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
|
@ -321,6 +321,8 @@ let
|
||||||
inherit (pkgs) opam git mercurial coreutils gnutar bzip2;
|
inherit (pkgs) opam git mercurial coreutils gnutar bzip2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dune-site = callPackage ../development/ocaml-modules/dune-site { };
|
||||||
|
|
||||||
duration = callPackage ../development/ocaml-modules/duration { };
|
duration = callPackage ../development/ocaml-modules/duration { };
|
||||||
|
|
||||||
earley = callPackage ../development/ocaml-modules/earley { };
|
earley = callPackage ../development/ocaml-modules/earley { };
|
||||||
|
|
Loading…
Reference in a new issue