aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/dune-configurator/default.nix
blob: 16e365dd4f38efb6237a11cb1a2eefc3070a88ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, dune_2, csexp, result }:

buildDunePackage rec {
  pname = "dune-configurator";

  useDune2 = true;

  inherit (dune_2) src version patches;

  dontAddPrefix = true;

  propagatedBuildInputs = [ csexp result ];

  meta = with lib; {
    description = "Helper library for gathering system configuration";
    maintainers = [ maintainers.marsam ];
    license = licenses.mit;
  };
}