Files
2026-05-12 13:28:13 -05:00

34 lines
686 B
Nix

{
lib,
fetchurl,
buildDunePackage,
cstruct,
lwt,
fmt,
}:
buildDunePackage (finalAttrs: {
pname = "mirage-block";
version = "3.0.2";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/mirage-block/releases/download/v${finalAttrs.version}/mirage-block-${finalAttrs.version}.tbz";
hash = "sha256-UALUfeL0G1mfSsLgAb/HpQ6OV12YtY+GUOYG6yhUwAI=";
};
propagatedBuildInputs = [
cstruct
lwt
fmt
];
meta = {
description = "Block signatures and implementations for MirageOS";
homepage = "https://github.com/mirage/mirage-block";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ vbgl ];
};
})