python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-kv / default.nix
blob20d83e16641848e1ddee0bfed0130ed2ad3a7dce
1 { lib, fetchurl, buildDunePackage
2 , fmt, mirage-device
3 , alcotest
4 }:
6 buildDunePackage rec {
7   pname = "mirage-kv";
8   version = "3.0.1";
10   useDune2 = true;
12   src = fetchurl {
13     url = "https://github.com/mirage/mirage-kv/releases/download/v${version}/mirage-kv-v${version}.tbz";
14     sha256 = "1n736sjvdd8rkbc2b5jm9sn0w6hvhjycma5328r0l03v24vk5cki";
15   };
17   propagatedBuildInputs = [ fmt mirage-device ];
19   doCheck = true;
20   checkInputs = [ alcotest ];
22   meta = {
23     description = "MirageOS signatures for key/value devices";
24     homepage = "https://github.com/mirage/mirage-kv";
25     license = lib.licenses.isc;
26     maintainers = [ lib.maintainers.vbgl ];
27   };