mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
ocamlPackages.dune-build-info: init at 2.4.0
This commit is contained in:
parent
de6891ffd0
commit
261d7c2f66
2 changed files with 19 additions and 0 deletions
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