python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-block-ramdisk / default.nix
blob78f3e48c5bd464b0d18a8b5aa08274399ae426f6
1 { lib, fetchurl, buildDunePackage, io-page, mirage-block }:
3 buildDunePackage rec {
4   pname = "mirage-block-ramdisk";
5   version = "0.5";
7   src = fetchurl {
8     url =
9       "https://github.com/mirage/mirage-block-ramdisk/releases/download/${version}/mirage-block-ramdisk-${version}.tbz";
10     sha256 = "cc0e814fd54efe7a5b7a8c5eb1c04e2dece751b7d8dee2d95908a0768896e8af";
11   };
13   # Make compatible with cstruct 6.1.0
14   postPatch = ''
15     substituteInPlace src/ramdisk.ml --replace 'Cstruct.len' 'Cstruct.length'
16   '';
18   minimalOCamlVersion = "4.06";
20   propagatedBuildInputs = [ io-page mirage-block ];
22   doCheck = false;
24   meta = with lib; {
25     description = "In-memory BLOCK device for MirageOS";
26     homepage = "https://github.com/mirage/mirage-block-ramdisk";
27     license = licenses.isc;
28     maintainers = with maintainers; [ ehmry ];
29   };