mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +00:00
libgnome-games-support_2_0: init at 2.0.beta.2
https://gitlab.gnome.org/GNOME/libgnome-games-support/-/compare/1.8.2...2.0.beta.2
This commit is contained in:
parent
47d3cf39e0
commit
70f28eca05
59
pkgs/development/libraries/libgnome-games-support/2.0.nix
Normal file
59
pkgs/development/libraries/libgnome-games-support/2.0.nix
Normal file
@ -0,0 +1,59 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, glib
|
||||
, gtk4
|
||||
, libgee
|
||||
, gettext
|
||||
, vala
|
||||
, gnome
|
||||
, libintl
|
||||
, meson
|
||||
, ninja
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libgnome-games-support";
|
||||
version = "2.0.beta.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "jB7lF4q8wppOgUJnuMXvo6DvmwkxbAAgCQ4Ex6OYxNw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
gettext
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
vala
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libintl
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# Required by libgnome-games-support-2.pc
|
||||
glib
|
||||
gtk4
|
||||
libgee
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome.updateScript {
|
||||
packageName = pname;
|
||||
attrPath = "${pname}_2_0";
|
||||
versionPolicy = "odd-unstable";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Small library intended for internal use by GNOME Games, but it may be used by others";
|
||||
homepage = "https://wiki.gnome.org/Apps/Games";
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = teams.gnome.members;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
|
||||
updateScript = gnome.updateScript {
|
||||
packageName = pname;
|
||||
versionPolicy = "odd-unstable";
|
||||
freeze = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -18141,6 +18141,7 @@ with pkgs;
|
||||
libgnome-keyring3 = gnome.libgnome-keyring;
|
||||
|
||||
libgnome-games-support = callPackage ../development/libraries/libgnome-games-support { };
|
||||
libgnome-games-support_2_0 = callPackage ../development/libraries/libgnome-games-support/2.0.nix { };
|
||||
|
||||
libgnomekbd = callPackage ../development/libraries/libgnomekbd { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user