depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mirage-block-ramdisk/default.nix
Default email ca5ab3a501 Project import generated by Copybara.
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
2022-07-14 08:49:19 -04:00

25 lines
706 B
Nix

{ lib, fetchurl, buildDunePackage, io-page, mirage-block }:
buildDunePackage rec {
pname = "mirage-block-ramdisk";
version = "0.5";
src = fetchurl {
url =
"https://github.com/mirage/mirage-block-ramdisk/releases/download/${version}/mirage-block-ramdisk-${version}.tbz";
sha256 = "cc0e814fd54efe7a5b7a8c5eb1c04e2dece751b7d8dee2d95908a0768896e8af";
};
minimalOCamlVersion = "4.06";
propagatedBuildInputs = [ io-page mirage-block ];
doCheck = false;
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 ];
};
}