Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

61 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
glib,
gtk3,
libgee,
gettext,
vala,
gnome,
libintl,
meson,
ninja,
}:
stdenv.mkDerivation rec {
pname = "libgnome-games-support";
version = "1.8.2";
src = fetchurl {
url = "mirror://gnome/sources/libgnome-games-support/${lib.versions.majorMinor version}/libgnome-games-support-${version}.tar.xz";
sha256 = "KENGBKewOHMawCMXMTiP8QT1ZbsjMMwk54zaBM/T730=";
};
nativeBuildInputs = [
gettext
meson
ninja
pkg-config
vala
];
buildInputs = [
libintl
];
propagatedBuildInputs = [
# Required by libgnome-games-support-1.pc
glib
gtk3
libgee
];
passthru = {
updateScript = gnome.updateScript {
packageName = "libgnome-games-support";
versionPolicy = "odd-unstable";
freeze = true;
};
};
meta = with lib; {
description = "Small library intended for internal use by GNOME Games, but it may be used by others";
homepage = "https://gitlab.gnome.org/GNOME/libgnome-games-support";
license = licenses.lgpl3;
teams = [ teams.gnome ];
platforms = platforms.unix;
};
}