Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5 seq, 6}: 7 8buildDunePackage rec { 9 pname = "lwd"; 10 version = "0.3"; 11 12 minimalOCamlVersion = "4.08"; 13 duneVersion = "3"; 14 15 src = fetchurl { 16 url = "https://github.com/let-def/lwd/releases/download/v${version}/lwd-${version}.tbz"; 17 sha256 = "sha256-H/vyW2tn2OBuWwcmPs8NcINXgFe93MSxRd8dzeoXARI="; 18 }; 19 20 propagatedBuildInputs = [ seq ]; 21 22 meta = with lib; { 23 description = "Lightweight reactive documents"; 24 license = licenses.mit; 25 maintainers = [ maintainers.alizter ]; 26 homepage = "https://github.com/let-def/lwd"; 27 }; 28}