2019-12-18 09:26:00 +00:00
|
|
|
{ lib, buildDunePackage, dune_2, dune-private-libs }:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "dune-configurator";
|
|
|
|
|
2020-03-15 17:14:11 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2019-12-18 09:26:00 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|