2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
2019-09-02 17:45:09 +01:00
|
|
|
, librsvg, gsound, gettext, itstool, libxml2, libgnome-games-support
|
2019-09-12 15:25:05 +01:00
|
|
|
, libgee, meson, ninja, python3, desktop-file-utils, adwaita-icon-theme }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnome-robots";
|
2019-09-02 17:45:09 +01:00
|
|
|
version = "3.34.0";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/gnome-robots/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-02 17:45:09 +01:00
|
|
|
sha256 = "18vnx5096d3mc2i7w4ma9hflsqfnvahl29aifjnvhdm5ji8qi0mb";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "gnome-robots"; attrPath = "gnome3.gnome-robots"; };
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2019-03-11 17:38:20 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig meson ninja python3
|
|
|
|
libxml2 wrapGAppsHook gettext itstool desktop-file-utils
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = [
|
2019-09-02 17:45:09 +01:00
|
|
|
gtk3 librsvg gsound libgnome-games-support libgee adwaita-icon-theme
|
2016-09-18 20:35:23 +01:00
|
|
|
];
|
|
|
|
|
2019-03-11 17:38:20 +00:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x build-aux/meson_post_install.py
|
|
|
|
patchShebangs build-aux/meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Robots;
|
|
|
|
description = "Avoid the robots and make them crash into each other";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|