python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / uri / default.nix
blobf669a98c4defc551ce43f106639d694675e95fcf
1 { lib, fetchurl, buildDunePackage, ounit
2 , angstrom, stringext
3 }:
5 buildDunePackage rec {
6   minimumOCamlVersion = "4.03";
7   pname = "uri";
8   version = "4.2.0";
10   useDune2 = true;
12   src = fetchurl {
13     url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
14     sha256 = "0szifda6yism5vn5jdizkha3ad0xk6zw4xgfl8g77dnv83ci7h65";
15   };
17   checkInputs = [ ounit ];
18   propagatedBuildInputs = [ angstrom stringext ];
19   doCheck = true;
21   meta = {
22     homepage = "https://github.com/mirage/ocaml-uri";
23     description = "RFC3986 URI parsing library for OCaml";
24     license = lib.licenses.isc;
25     maintainers = [ lib.maintainers.vbgl ];
26   };