Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 15 lines 394 B view raw
1{ buildDunePackage, mirage-flow, fmt, lwt, logs, cstruct, mirage-clock }: 2 3buildDunePackage { 4 pname = "mirage-flow-combinators"; 5 6 inherit (mirage-flow) version src; 7 8 duneVersion = "3"; 9 10 propagatedBuildInputs = [ lwt logs cstruct mirage-clock mirage-flow ]; 11 12 meta = mirage-flow.meta // { 13 description = "Flow implementations and combinators for MirageOS specialized to lwt"; 14 }; 15}