fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / lwd / default.nix
blobb83541271dd7a6c40b5d84c74513373853cfd8d1
2   lib,
3   fetchurl,
4   buildDunePackage,
5   seq,
6 }:
8 buildDunePackage rec {
9   pname = "lwd";
10   version = "0.3";
12   minimalOCamlVersion = "4.08";
13   duneVersion = "3";
15   src = fetchurl {
16     url = "https://github.com/let-def/lwd/releases/download/v${version}/lwd-${version}.tbz";
17     sha256 = "sha256-H/vyW2tn2OBuWwcmPs8NcINXgFe93MSxRd8dzeoXARI=";
18   };
20   propagatedBuildInputs = [ seq ];
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   };