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,59 @@
{
lib,
stdenv,
fetchurl,
pkg-config,
gnum4,
glib,
libsigcxx30,
gnome,
meson,
ninja,
}:
stdenv.mkDerivation rec {
pname = "glibmm";
version = "2.84.0";
outputs = [
"out"
"dev"
];
src = fetchurl {
url = "mirror://gnome/sources/glibmm/${lib.versions.majorMinor version}/glibmm-${version}.tar.xz";
hash = "sha256-Vu5fUcis/Ar99GlZMW5MhVTLUO0ra8XOOJ2XnLtkJQk=";
};
nativeBuildInputs = [
meson
pkg-config
ninja
gnum4
glib # for glib-compile-schemas
];
propagatedBuildInputs = [
glib
libsigcxx30
];
doCheck = false; # fails. one test needs the net, another /etc/fstab
passthru = {
updateScript = gnome.updateScript {
packageName = "glibmm";
attrPath = "glibmm_2_68";
versionPolicy = "odd-unstable";
};
};
meta = with lib; {
description = "C++ interface to the GLib library";
homepage = "https://gtkmm.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ raskin ];
teams = [ teams.gnome ];
platforms = platforms.unix;
};
}

View File

@@ -0,0 +1,60 @@
{
lib,
stdenv,
fetchurl,
pkg-config,
gnum4,
glib,
libsigcxx,
gnome,
meson,
ninja,
}:
stdenv.mkDerivation rec {
pname = "glibmm";
version = "2.66.8";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
hash = "sha256-ZPEdO5WiTiqNQWbs/1GHMPeezCciLvQfr3x+A0D8kyk=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
meson
pkg-config
ninja
gnum4
glib # for glib-compile-schemas
];
propagatedBuildInputs = [
glib
libsigcxx
];
doCheck = false; # fails. one test needs the net, another /etc/fstab
passthru = {
updateScript = gnome.updateScript {
packageName = "glibmm";
versionPolicy = "odd-unstable";
freeze = true;
};
};
meta = with lib; {
description = "C++ interface to the GLib library";
homepage = "https://gtkmm.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}