mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
20 lines
407 B
Nix
20 lines
407 B
Nix
{ lib, buildDunePackage, dune_2, dune-private-libs }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "dune-configurator";
|
|
|
|
useDune2 = true;
|
|
|
|
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;
|
|
};
|
|
}
|