ocamlPackages.mirage-block-ramdisk: init at 0.5
This commit is contained in:
parent
30a2817831
commit
13eede3e66
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, fetchurl, buildDunePackage, io-page, io-page-unix, mirage-block, alcotest
|
||||||
|
, mirage-block-combinators }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "mirage-block-ramdisk";
|
||||||
|
version = "0.5";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url =
|
||||||
|
"https://github.com/mirage/mirage-block-ramdisk/releases/download/${version}/mirage-block-ramdisk-${version}.tbz";
|
||||||
|
sha256 = "cc0e814fd54efe7a5b7a8c5eb1c04e2dece751b7d8dee2d95908a0768896e8af";
|
||||||
|
};
|
||||||
|
|
||||||
|
minimumOCamlVersion = "4.06";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ io-page mirage-block ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [ alcotest io-page-unix mirage-block-combinators ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "In-memory BLOCK device for MirageOS";
|
||||||
|
homepage = "https://github.com/mirage/mirage-block-ramdisk";
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = with maintainers; [ ehmry ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -577,6 +577,8 @@ let
|
||||||
|
|
||||||
mirage-block-combinators = callPackage ../development/ocaml-modules/mirage-block/combinators.nix { };
|
mirage-block-combinators = callPackage ../development/ocaml-modules/mirage-block/combinators.nix { };
|
||||||
|
|
||||||
|
mirage-block-ramdisk = callPackage ../development/ocaml-modules/mirage-block-ramdisk { };
|
||||||
|
|
||||||
mirage-bootvar-unix = callPackage ../development/ocaml-modules/mirage-bootvar-unix { };
|
mirage-bootvar-unix = callPackage ../development/ocaml-modules/mirage-bootvar-unix { };
|
||||||
|
|
||||||
mirage-channel = callPackage ../development/ocaml-modules/mirage-channel { };
|
mirage-channel = callPackage ../development/ocaml-modules/mirage-channel { };
|
||||||
|
|
Loading…
Reference in New Issue