pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / ocaml-modules / lwd / default.nix
blob43e13bbcc89313fb0a88475297e1c5e598761492
1 { lib, fetchurl, buildDunePackage, seq }:
3 buildDunePackage rec {
4   pname = "lwd";
5   version = "0.3";
7   minimalOCamlVersion = "4.08";
8   duneVersion = "3";
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   };
16   propagatedBuildInputs = [ seq ];
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   };