mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
387 B
Nix
18 lines
387 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|