gnome3.gnome-robots: 3.38.0 → 40.0

This commit is contained in:
Jan Tojnar 2021-03-21 08:30:12 +01:00
parent cac228bdd3
commit 0a1d2bbc66
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,26 +1,54 @@
{ lib, stdenv, fetchurl, pkg-config, gnome3, gtk3, wrapGAppsHook { lib
, librsvg, gsound, gettext, itstool, libxml2, libgnome-games-support , stdenv
, libgee, meson, ninja, python3, desktop-file-utils, adwaita-icon-theme }: , fetchurl
, pkg-config
, gnome3
, gtk3
, wrapGAppsHook
, librsvg
, gsound
, gettext
, itstool
, libxml2
, libgnome-games-support
, libgee
, meson
, ninja
, vala
, python3
, desktop-file-utils
, adwaita-icon-theme
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-robots"; pname = "gnome-robots";
version = "3.38.0"; version = "40.0";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-robots/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-robots/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "1qpzpsyj9i5dsfy7anfb2dcm602bjkcgqj86fxvnxy6llx56ks0z"; sha256 = "04fbykj576dq1h6cycgfhh8wd6yxmlsqykvj188sbwahay42zgvg";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "gnome-robots"; attrPath = "gnome3.gnome-robots"; };
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config meson ninja python3 pkg-config
libxml2 wrapGAppsHook gettext itstool desktop-file-utils meson
ninja
vala
python3
libxml2
wrapGAppsHook
gettext
itstool
desktop-file-utils
]; ];
buildInputs = [ buildInputs = [
gtk3 librsvg gsound libgnome-games-support libgee adwaita-icon-theme gtk3
librsvg
gsound
libgnome-games-support
libgee
adwaita-icon-theme
]; ];
postPatch = '' postPatch = ''
@ -28,11 +56,18 @@ stdenv.mkDerivation rec {
patchShebangs build-aux/meson_post_install.py patchShebangs build-aux/meson_post_install.py
''; '';
passthru = {
updateScript = gnome3.updateScript {
packageName = "gnome-robots";
attrPath = "gnome3.gnome-robots";
};
};
meta = with lib; { meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/Robots"; homepage = "https://wiki.gnome.org/Apps/Robots";
description = "Avoid the robots and make them crash into each other"; description = "Avoid the robots and make them crash into each other";
maintainers = teams.gnome.members; maintainers = teams.gnome.members;
license = licenses.gpl2; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }