ocamlPackages.dune-build-info: init at 2.4.0

This commit is contained in:
Ben Darwin 2020-04-06 10:43:10 -04:00
parent de6891ffd0
commit 261d7c2f66
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, buildDunePackage, dune_2 }:
buildDunePackage rec {
pname = "dune-build-info";
inherit (dune_2) src version;
useDune2 = true;
dontAddPrefix = true;
meta = with lib; {
inherit (dune_2.meta) homepage;
description = "Embed build information inside executables";
maintainers = [ maintainers.bcdarwin ];
license = licenses.mit;
};
}

View file

@ -230,6 +230,8 @@ let
dune_2 = callPackage ../development/tools/ocaml/dune/2.nix { };
dune-build-info = callPackage ../development/ocaml-modules/dune-build-info { };
dune-configurator = callPackage ../development/ocaml-modules/dune-configurator { };
dune-private-libs = callPackage ../development/ocaml-modules/dune-private-libs { };