summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-configurator/default.nix
blob: d84c21565db852fd6446a6d669911ba88b032512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildDunePackage, dune_2, dune-private-libs }:

buildDunePackage rec {
  pname = "dune-configurator";

  inherit (dune_2) src version;

  dontAddPrefix = true;

  propagatedBuildInputs = [ dune-private-libs ];

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