gnome3.gnome-robots: 3.22.3 -> 3.32.0
This commit is contained in:
parent
01b40d98df
commit
7aefffff6b
|
@ -1,25 +1,33 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||||
, librsvg, libcanberra-gtk3, intltool, itstool, libxml2, libgnome-games-support
|
, librsvg, libcanberra-gtk3, gettext, itstool, libxml2, libgnome-games-support
|
||||||
, libgee}:
|
, libgee, meson, ninja, python3, desktop-file-utils , hicolor-icon-theme, adwaita-icon-theme }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnome-robots-${version}";
|
name = "gnome-robots-${version}";
|
||||||
version = "3.22.3";
|
version = "3.32.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-robots/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/gnome-robots/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||||
sha256 = "0dzcjd7rdmlzgr6rmljhrbccwif8wj0cr1xcrrj7malj33098wwk";
|
sha256 = "1xp1sijl5k7wmnbb0hdgh4ajxgp74k7fcnmd5c6rw6lf51wpinyh";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript { packageName = "gnome-robots"; attrPath = "gnome3.gnome-robots"; };
|
updateScript = gnome3.updateScript { packageName = "gnome-robots"; attrPath = "gnome3.gnome-robots"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [
|
pkgconfig meson ninja python3
|
||||||
gtk3 wrapGAppsHook intltool itstool librsvg libcanberra-gtk3
|
libxml2 wrapGAppsHook gettext itstool desktop-file-utils
|
||||||
libxml2 gnome3.adwaita-icon-theme libgnome-games-support libgee
|
hicolor-icon-theme # For setup-hook
|
||||||
];
|
];
|
||||||
|
buildInputs = [
|
||||||
|
gtk3 librsvg libcanberra-gtk3 libgnome-games-support libgee adwaita-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x build-aux/meson_post_install.py
|
||||||
|
patchShebangs build-aux/meson_post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://wiki.gnome.org/Apps/Robots;
|
homepage = https://wiki.gnome.org/Apps/Robots;
|
||||||
|
|
Loading…
Reference in New Issue