My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/dune-configurator/default.nix

21 lines
439 B

{ lib, buildDunePackage, dune_2, csexp, result }:
buildDunePackage rec {
pname = "dune-configurator";
useDune2 = true;
inherit (dune_2) src version patches;
minimumOCamlVersion = "4.03";
dontAddPrefix = true;
propagatedBuildInputs = [ csexp result ];
meta = with lib; {
description = "Helper library for gathering system configuration";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};
}