Vincent Laporte 0934d96508 ocamlPackages.lwd: 0.3 → 0.4
ocamlPackages.nottui-unix: init at 0.4
2025-08-14 07:47:57 +02:00

28 lines
565 B
Nix

{
lib,
fetchurl,
buildDunePackage,
seq,
}:
buildDunePackage rec {
pname = "lwd";
version = "0.4";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/let-def/lwd/releases/download/v${version}/lwd-${version}.tbz";
hash = "sha256-nnFltlBWfPOerF4HuVNGzXcZxRSdsM+abeD5ZdQ+x8U=";
};
propagatedBuildInputs = [ seq ];
meta = with lib; {
description = "Lightweight reactive documents";
license = licenses.mit;
maintainers = [ maintainers.alizter ];
homepage = "https://github.com/let-def/lwd";
};
}