python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ezjsonm / default.nix
blobfd3187055126bc5259811cb35dee1705f30e8a62
1 { lib, fetchurl, buildDunePackage, jsonm, hex, sexplib0 }:
3 buildDunePackage rec {
4   pname = "ezjsonm";
5   version = "1.2.0";
7   useDune2 = true;
9   src = fetchurl {
10     url = "https://github.com/mirage/ezjsonm/releases/download/v${version}/ezjsonm-v${version}.tbz";
11     sha256 = "1q6cf63cc614lr141rzhm2w4rhi1snfqai6fmkhvfjs84hfbw2w7";
12   };
14   propagatedBuildInputs = [ jsonm hex sexplib0 ];
16   meta = {
17     description = "An easy interface on top of the Jsonm library";
18     homepage = "https://github.com/mirage/ezjsonm";
19     license = lib.licenses.isc;
20     maintainers = with lib.maintainers; [ vbgl ];
21   };