nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / dune-configurator / default.nix
blobdf4a8578df893c2221b0289ac69f9e4f85acd057
2   lib,
3   buildDunePackage,
4   dune_3,
5   csexp,
6 }:
8 buildDunePackage rec {
9   pname = "dune-configurator";
11   inherit (dune_3) src version patches;
13   # This fixes finding csexp
14   postPatch = ''
15     rm -rf vendor/pp vendor/csexp
16   '';
18   minimalOCamlVersion = "4.05";
20   dontAddPrefix = true;
22   propagatedBuildInputs = [ csexp ];
24   meta = with lib; {
25     description = "Helper library for gathering system configuration";
26     maintainers = [ ];
27     license = licenses.mit;
28   };