1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/ocaml-modules/dune-build-info/default.nix

18 lines
374 B
Nix

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