Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 27 lines 630 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5 cmdliner, 6}: 7 8buildDunePackage rec { 9 pname = "functoria-runtime"; 10 version = "4.4.2"; 11 12 src = fetchurl { 13 url = "https://github.com/mirage/mirage/releases/download/v${version}/mirage-${version}.tbz"; 14 hash = "sha256-fPJou5EYmIFfa54BMiFvS7BKQq0u1pkA9MVHXt8boPk="; 15 }; 16 17 minimalOCamlVersion = "4.08"; 18 19 propagatedBuildInputs = [ cmdliner ]; 20 21 meta = with lib; { 22 homepage = "https://github.com/mirage/functoria"; 23 license = licenses.isc; 24 description = "Runtime support library for functoria-generated code"; 25 maintainers = [ maintainers.sternenseemann ]; 26 }; 27}