nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 563 B view raw
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5 seq, 6}: 7 8buildDunePackage rec { 9 pname = "lwd"; 10 version = "0.4"; 11 12 minimalOCamlVersion = "4.08"; 13 14 src = fetchurl { 15 url = "https://github.com/let-def/lwd/releases/download/v${version}/lwd-${version}.tbz"; 16 hash = "sha256-nnFltlBWfPOerF4HuVNGzXcZxRSdsM+abeD5ZdQ+x8U="; 17 }; 18 19 propagatedBuildInputs = [ seq ]; 20 21 meta = { 22 description = "Lightweight reactive documents"; 23 license = lib.licenses.mit; 24 maintainers = [ lib.maintainers.alizter ]; 25 homepage = "https://github.com/let-def/lwd"; 26 }; 27}