python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / bwd / default.nix
blobaa762502a5981bf79e4b628266c8fbd726c1c6a3
1 { lib, fetchFromGitHub, buildDunePackage, qcheck-core }:
3 buildDunePackage rec {
4   pname = "bwd";
5   version = "2.0.0";
7   minimalOCamlVersion = "4.12";
9   src = fetchFromGitHub {
10     owner = "RedPRL";
11     repo = "ocaml-bwd";
12     rev = version;
13     sha256 = "sha256:0zgi8an53z6wr6nzz0zlmhx19zhqy1w2vfy1sq3sikjwh74jjq60";
14   };
16   doCheck = true;
17   checkInputs = [ qcheck-core ];
19   meta = {
20     description = "Backward Lists";
21     inherit (src.meta) homepage;
22     license = lib.licenses.asl20;
23     maintainers = [ lib.maintainers.vbgl ];
24   };