Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5 cstruct, 6 fmt, 7 lwt, 8}: 9 10buildDunePackage rec { 11 pname = "mirage-flow"; 12 version = "4.0.2"; 13 14 minimalOCamlVersion = "4.05"; 15 16 src = fetchurl { 17 url = "https://github.com/mirage/mirage-flow/releases/download/v${version}/mirage-flow-${version}.tbz"; 18 hash = "sha256-SGXj3S4b53O9JENUFuMl3I+QoiZ0QSrYu7zTet7q+1o="; 19 }; 20 21 propagatedBuildInputs = [ 22 cstruct 23 fmt 24 lwt 25 ]; 26 27 meta = { 28 description = "Flow implementations and combinators for MirageOS"; 29 homepage = "https://github.com/mirage/mirage-flow"; 30 license = lib.licenses.isc; 31 maintainers = [ lib.maintainers.vbgl ]; 32 }; 33}