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,61 @@
{
lib,
stdenv,
fetchurl,
pkg-config,
gtk2,
glibmm,
cairomm,
pangomm,
atkmm,
}:
stdenv.mkDerivation rec {
pname = "gtkmm";
version = "2.24.5";
src = fetchurl {
url = "mirror://gnome/sources/gtkmm/${lib.versions.majorMinor version}/gtkmm-${version}.tar.xz";
sha256 = "0680a53b7bf90b4e4bf444d1d89e6df41c777e0bacc96e9c09fc4dd2f5fe6b72";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [
glibmm
gtk2
atkmm
cairomm
pangomm
];
doCheck = true;
enableParallelBuilding = true;
meta = {
description = "C++ interface to the GTK graphical user interface library";
longDescription = ''
gtkmm is the official C++ interface for the popular GUI library
GTK. Highlights include typesafe callbacks, and a
comprehensive set of widgets that are easily extensible via
inheritance. You can create user interfaces either in code or
with the Glade User Interface designer, using libglademm.
There's extensive documentation, including API reference and a
tutorial.
'';
homepage = "https://gtkmm.org/";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.unix;
};
}

View File

@@ -0,0 +1,84 @@
{
lib,
stdenv,
fetchurl,
pkg-config,
meson,
ninja,
python3,
gtk3,
glibmm,
cairomm,
pangomm,
atkmm,
libepoxy,
gnome,
glib,
gdk-pixbuf,
}:
stdenv.mkDerivation rec {
pname = "gtkmm";
version = "3.24.10";
src = fetchurl {
url = "mirror://gnome/sources/gtkmm/${lib.versions.majorMinor version}/gtkmm-${version}.tar.xz";
sha256 = "erfiJmgIcW4mw5kkrOH7RtqGwX7znZiWJMQjFLMrWnY=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
pkg-config
meson
ninja
python3
glib
gdk-pixbuf # for gdk-pixbuf-pixdata
];
buildInputs = [ libepoxy ];
propagatedBuildInputs = [
glibmm
gtk3
atkmm
cairomm
pangomm
];
# https://bugzilla.gnome.org/show_bug.cgi?id=764521
doCheck = false;
passthru = {
updateScript = gnome.updateScript {
packageName = "gtkmm";
attrPath = "gtkmm3";
versionPolicy = "odd-unstable";
freeze = true;
};
};
meta = with lib; {
description = "C++ interface to the GTK graphical user interface library";
longDescription = ''
gtkmm is the official C++ interface for the popular GUI library
GTK. Highlights include typesafe callbacks, and a
comprehensive set of widgets that are easily extensible via
inheritance. You can create user interfaces either in code or
with the Glade User Interface designer, using libglademm.
There's extensive documentation, including API reference and a
tutorial.
'';
homepage = "https://gtkmm.gnome.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}

View File

@@ -0,0 +1,98 @@
{
stdenv,
lib,
fetchurl,
pkg-config,
meson,
ninja,
python3,
gtk4,
glib,
glibmm_2_68,
cairomm_1_16,
pangomm_2_48,
libepoxy,
gnome,
makeFontsConf,
xvfb-run,
}:
stdenv.mkDerivation rec {
pname = "gtkmm";
version = "4.18.0";
outputs = [
"out"
"dev"
];
src = fetchurl {
url = "mirror://gnome/sources/gtkmm/${lib.versions.majorMinor version}/gtkmm-${version}.tar.xz";
hash = "sha256-LuMcFUefxNjpWLA8i1+7yOF7wSLCovVESXtOBWGeM+w=";
};
nativeBuildInputs = [
pkg-config
meson
ninja
python3
glib # glib-compile-resources
];
buildInputs = [
libepoxy
];
propagatedBuildInputs = [
glibmm_2_68
gtk4
cairomm_1_16
pangomm_2_48
];
nativeCheckInputs = lib.optionals (!stdenv.hostPlatform.isDarwin) [
xvfb-run
];
# Tests require fontconfig.
FONTCONFIG_FILE = makeFontsConf {
fontDirectories = [ ];
};
doCheck = true;
checkPhase = ''
runHook preCheck
${lib.optionalString (!stdenv.hostPlatform.isDarwin) "xvfb-run -s '-screen 0 800x600x24'"} \
meson test --print-errorlogs
runHook postCheck
'';
passthru = {
updateScript = gnome.updateScript {
packageName = "gtkmm";
attrPath = "gtkmm4";
versionPolicy = "odd-unstable";
};
};
meta = with lib; {
description = "C++ interface to the GTK graphical user interface library";
longDescription = ''
gtkmm is the official C++ interface for the popular GUI library
GTK. Highlights include typesafe callbacks, and a
comprehensive set of widgets that are easily extensible via
inheritance. You can create user interfaces either in code or
with the Glade User Interface designer, using libglademm.
There's extensive documentation, including API reference and a
tutorial.
'';
homepage = "https://gtkmm.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ raskin ];
teams = [ teams.gnome ];
platforms = platforms.unix;
};
}