Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 24 lines 625 B view raw
1{ lib, fetchurl, buildDunePackage 2, cstruct, fmt, lwt, mirage-kv 3}: 4 5buildDunePackage rec { 6 pname = "mirage-fs"; 7 version = "4.0.0"; 8 9 duneVersion = "3"; 10 11 src = fetchurl { 12 url = "https://github.com/mirage/mirage-fs/releases/download/v${version}/mirage-fs-v${version}.tbz"; 13 hash = "sha256-PYZ2HCPuxOv4FU7EHymsa1oIZU7q8TSzzRvlngYdZ3s="; 14 }; 15 16 propagatedBuildInputs = [ cstruct fmt lwt mirage-kv ]; 17 18 meta = { 19 description = "MirageOS signatures for filesystem devices"; 20 homepage = "https://github.com/mirage/mirage-fs"; 21 license = lib.licenses.isc; 22 maintainers = [ lib.maintainers.vbgl ]; 23 }; 24}