python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / hashcons / default.nix
blob2bfaced11551a966bfa33d8f1eb9137ae68049da
1 { lib, fetchFromGitHub, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "hashcons";
5   version = "1.4";
7   src = fetchFromGitHub {
8     owner  = "backtracking";
9     repo   = "ocaml-${pname}";
10     rev    = "d733325eeb55878bed285120c2c088daf78f0e2b";
11     sha256 = "0h4pvwj34pndaw3pajkhl710ywwinhc9pqimgllfmkl37wz2d8zq";
12   };
14   useDune2 = true;
16   doCheck = true;
18   meta = {
19     description = "OCaml hash-consing library";
20     license = lib.licenses.lgpl21;
21     maintainers = [ lib.maintainers.ulrikstrid ];
22   };