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,39 @@
{
lib,
fetchurl,
pkg-config,
buildDunePackage,
dune-configurator,
gtk3,
cairo2,
camlp-streams,
}:
buildDunePackage rec {
version = "3.1.5";
pname = "lablgtk3";
minimalOCamlVersion = "4.06";
src = fetchurl {
url = "https://github.com/garrigue/lablgtk/releases/download/${version}/lablgtk3-${version}.tbz";
hash = "sha256-1IIc2+zzrjdPIDF9Y+Q/5YAww7qWV7UaLoPmUhl+jqw=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
dune-configurator
camlp-streams
];
propagatedBuildInputs = [
gtk3
cairo2
];
meta = {
description = "OCaml interface to GTK 3";
homepage = "http://lablgtk.forge.ocamlcore.org/";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@@ -0,0 +1,17 @@
{
buildDunePackage,
gtkspell3,
lablgtk3,
}:
buildDunePackage {
pname = "lablgtk3-gtkspell3";
buildInputs = [ gtkspell3 ] ++ lablgtk3.buildInputs;
propagatedBuildInputs = [ lablgtk3 ];
inherit (lablgtk3)
src
version
meta
nativeBuildInputs
;
}

View File

@@ -0,0 +1,24 @@
{
buildDunePackage,
dune-configurator,
lablgtk3,
librsvg,
pkg-config,
}:
buildDunePackage {
pname = "lablgtk3-rsvg2";
inherit (lablgtk3) version src;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [
lablgtk3
librsvg
];
meta = lablgtk3.meta // {
description = "OCaml interface to Gnome rsvg2 library";
};
}

View File

@@ -0,0 +1,17 @@
{
buildDunePackage,
gtksourceview,
lablgtk3,
}:
buildDunePackage {
pname = "lablgtk3-sourceview3";
buildInputs = lablgtk3.buildInputs ++ [ gtksourceview ];
propagatedBuildInputs = [ lablgtk3 ];
inherit (lablgtk3)
src
version
meta
nativeBuildInputs
;
}