python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-block / default.nix
blob161fd4a66ead9833f93703891ddf1e9c271ffe52
1 { lib, fetchurl, buildDunePackage
2 , cstruct, lwt, fmt
3 }:
5 buildDunePackage rec {
6   pname = "mirage-block";
7   version = "3.0.0";
9   src = fetchurl {
10     url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-v${version}.tbz";
11     sha256 = "sha256-NB5nJpppMtdi0HDjKcCAqRjO4vIbAMfnP934P+SnzmU=";
12   };
14   propagatedBuildInputs = [ cstruct lwt fmt ];
16   meta = with lib; {
17     description = "Block signatures and implementations for MirageOS";
18     homepage = "https://github.com/mirage/mirage-block";
19     license = licenses.isc;
20     maintainers = with maintainers; [ vbgl ];
21   };