push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
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";
};
}

View File

@@ -0,0 +1,25 @@
{
lib,
buildDunePackage,
lwd,
lwt,
nottui,
}:
buildDunePackage {
pname = "nottui-lwt";
inherit (lwd) version src;
propagatedBuildInputs = [
lwt
nottui
];
meta = with lib; {
description = "Run Nottui UIs in Lwt";
license = licenses.mit;
maintainers = [ maintainers.alizter ];
homepage = "https://github.com/let-def/lwd";
};
}

View File

@@ -0,0 +1,21 @@
{
lib,
buildDunePackage,
lwd,
nottui,
}:
buildDunePackage {
pname = "nottui-pretty";
inherit (lwd) version src;
propagatedBuildInputs = [ nottui ];
meta = with lib; {
description = "Pretty-printer based on PPrint rendering UIs";
license = licenses.mit;
maintainers = [ maintainers.alizter ];
homepage = "https://github.com/let-def/lwd";
};
}

View File

@@ -0,0 +1,26 @@
{
lib,
buildDunePackage,
lwd,
nottui,
notty,
}:
buildDunePackage {
pname = "nottui-unix";
inherit (lwd) version src;
propagatedBuildInputs = [
lwd
nottui
notty
];
meta = with lib; {
description = "UI toolkit for the UNIX terminal built on top of Notty and Lwd";
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
homepage = "https://github.com/let-def/lwd";
};
}

View File

@@ -0,0 +1,24 @@
{
lib,
buildDunePackage,
lwd,
notty,
}:
buildDunePackage {
pname = "nottui";
inherit (lwd) version src;
propagatedBuildInputs = [
lwd
notty
];
meta = with lib; {
description = "UI toolkit for the terminal built on top of Notty and Lwd";
license = licenses.mit;
maintainers = [ maintainers.alizter ];
homepage = "https://github.com/let-def/lwd";
};
}

View File

@@ -0,0 +1,28 @@
{
lib,
buildDunePackage,
js_of_ocaml,
js_of_ocaml-ppx,
lwd,
tyxml,
}:
buildDunePackage {
pname = "tyxml-lwd";
inherit (lwd) version src;
buildInputs = [ js_of_ocaml-ppx ];
propagatedBuildInputs = [
js_of_ocaml
lwd
tyxml
];
meta = with lib; {
description = "Make reactive webpages in Js_of_ocaml using Tyxml and Lwd";
license = licenses.mit;
maintainers = [ maintainers.alizter ];
homepage = "https://github.com/let-def/lwd";
};
}