forked from mirrors/nixpkgs
ocamlPackages.dune-build-info: init at 2.4.0
This commit is contained in:
parent
de6891ffd0
commit
261d7c2f66
17
pkgs/development/ocaml-modules/dune-build-info/default.nix
Normal file
17
pkgs/development/ocaml-modules/dune-build-info/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue