python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / dune-configurator / default.nix
blobf5303db9a3b543e75d6dc1fc1fcef72416206350
1 { lib, buildDunePackage, dune_2, csexp, result }:
3 buildDunePackage rec {
4   pname = "dune-configurator";
6   useDune2 = true;
8   inherit (dune_2) src version patches;
10   minimumOCamlVersion = "4.03";
12   dontAddPrefix = true;
14   propagatedBuildInputs = [ csexp result ];
16   meta = with lib; {
17     description = "Helper library for gathering system configuration";
18     maintainers = [ maintainers.marsam ];
19     license = licenses.mit;
20   };