depot/third_party/nixpkgs/pkgs/development/ocaml-modules/dune-configurator/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

24 lines
472 B
Nix

{ lib, buildDunePackage, dune_3, csexp }:
buildDunePackage rec {
pname = "dune-configurator";
inherit (dune_3) src version patches;
# This fixes finding csexp
postPatch = ''
rm -rf vendor/pp vendor/csexp
'';
minimalOCamlVersion = "4.05";
dontAddPrefix = true;
propagatedBuildInputs = [ csexp ];
meta = with lib; {
description = "Helper library for gathering system configuration";
maintainers = [ ];
license = licenses.mit;
};
}