aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/dune-build-info/default.nix
blob: 5d9f105782b49bc88de5b34321825aac150149d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}