python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-fs / default.nix
blob23c79c4a77d6c3800c82a89ebdc7e5bfc589e8a0
1 { lib, fetchurl, buildDunePackage
2 , cstruct, fmt, lwt, mirage-device, mirage-kv
3 }:
5 buildDunePackage rec {
6   pname = "mirage-fs";
7   version = "4.0.0";
9   useDune2 = true;
11   src = fetchurl {
12     url = "https://github.com/mirage/mirage-fs/releases/download/v${version}/mirage-fs-v${version}.tbz";
13     sha256 = "sha256-PYZ2HCPuxOv4FU7EHymsa1oIZU7q8TSzzRvlngYdZ3s=";
14   };
16   propagatedBuildInputs = [ cstruct fmt lwt mirage-device mirage-kv ];
18   meta = {
19     description = "MirageOS signatures for filesystem devices";
20     homepage = "https://github.com/mirage/mirage-fs";
21     license = lib.licenses.isc;
22     maintainers = [ lib.maintainers.vbgl ];
23   };