ocamlPackages.dune-site: init 2.9.1

This commit is contained in:
superherointj 2021-10-27 09:10:44 -03:00 committed by Vincent Laporte
parent c535db45ce
commit 40bad15b21
2 changed files with 21 additions and 0 deletions

View 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;
};
}

View File

@ -321,6 +321,8 @@ let
inherit (pkgs) opam git mercurial coreutils gnutar bzip2;
};
dune-site = callPackage ../development/ocaml-modules/dune-site { };
duration = callPackage ../development/ocaml-modules/duration { };
earley = callPackage ../development/ocaml-modules/earley { };