Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
623 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchurl,
fmt,
ocaml_lwt,
}:
buildDunePackage rec {
pname = "mirage-device";
version = "2.0.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/mirage-device/releases/download/v${version}/mirage-device-v${version}.tbz";
sha256 = "18alxyi6wlxqvb4lajjlbdfkgcajsmklxi9xqmpcz07j51knqa04";
};
propagatedBuildInputs = [
fmt
ocaml_lwt
];
meta = {
description = "Abstract devices for MirageOS";
homepage = "https://github.com/mirage/mirage-device";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}