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