mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
22 lines
339 B
Nix
22 lines
339 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
dune,
|
|
csexp,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "dune-configurator";
|
|
|
|
inherit (dune) src version;
|
|
|
|
dontAddPrefix = true;
|
|
|
|
propagatedBuildInputs = [ csexp ];
|
|
|
|
meta = {
|
|
description = "Helper library for gathering system configuration";
|
|
maintainers = [ ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|