python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / dune-glob / default.nix
blob59b78a7b77552c41c563d6de4700344a5ebe2128
1 { lib, buildDunePackage, dune_3, dune-private-libs }:
3 buildDunePackage rec {
4   pname = "dune-glob";
5   inherit (dune_3) src version;
7   duneVersion = "3";
9   dontAddPrefix = true;
11   propagatedBuildInputs = [ dune-private-libs ];
13   preBuild = ''
14     rm -r vendor/csexp
15   '';
17   meta = with lib; {
18     inherit (dune_3.meta) homepage;
19     description = "Glob string matching language supported by dune";
20     maintainers = [ maintainers.marsam ];
21     license = licenses.mit;
22   };