gnome.gnome-nibbles: 3.38.3 → 4.0.1

https://gitlab.gnome.org/GNOME/gnome-nibbles/-/compare/3.38.3...4.0.1
This commit is contained in:
Jan Tojnar 2023-12-16 19:08:35 +00:00
parent f6cf9fcd6d
commit 574ac1e631

View file

@ -3,30 +3,28 @@
, fetchurl , fetchurl
, pkg-config , pkg-config
, gnome , gnome
, gtk3 , gtk4
, wrapGAppsHook , wrapGAppsHook4
, librsvg , librsvg
, gsound , gsound
, clutter-gtk
, gettext , gettext
, itstool , itstool
, vala , vala
, libxml2 , libxml2
, libgee , libgee
, libgnome-games-support , libgnome-games-support_2_0
, meson , meson
, ninja , ninja
, desktop-file-utils , desktop-file-utils
, hicolor-icon-theme
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "gnome-nibbles"; pname = "gnome-nibbles";
version = "3.38.3"; version = "4.0.1";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-nibbles/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-nibbles/${lib.versions.majorMinor finalAttrs.version}/gnome-nibbles-${finalAttrs.version}.tar.xz";
sha256 = "l1/eHYPHsVs5Lqx6NZFhKQ/IrrdgXBHnHO4MPDJrXmE="; sha256 = "xrG89vesx0RQAmveV7OONcJJ08K3xC2c/hH4YvPW12I=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -34,22 +32,19 @@ stdenv.mkDerivation rec {
ninja ninja
vala vala
pkg-config pkg-config
wrapGAppsHook wrapGAppsHook4
gettext gettext
itstool itstool
libxml2 libxml2
desktop-file-utils desktop-file-utils
hicolor-icon-theme
]; ];
buildInputs = [ buildInputs = [
gtk3 gtk4
librsvg librsvg
gsound gsound
clutter-gtk
gnome.adwaita-icon-theme
libgee libgee
libgnome-games-support libgnome-games-support_2_0
]; ];
passthru = { passthru = {
@ -62,8 +57,8 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Guide a worm around a maze"; description = "Guide a worm around a maze";
homepage = "https://wiki.gnome.org/Apps/Nibbles"; homepage = "https://wiki.gnome.org/Apps/Nibbles";
license = licenses.gpl2; license = licenses.gpl2Plus;
maintainers = teams.gnome.members; maintainers = teams.gnome.members;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} })