summaryrefslogtreecommitdiff
path: root/pkgs/desktops/gnome-3/games/gnome-robots/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome-3/games/gnome-robots/default.nix')
-rw-r--r--pkgs/desktops/gnome-3/games/gnome-robots/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/desktops/gnome-3/games/gnome-robots/default.nix b/pkgs/desktops/gnome-3/games/gnome-robots/default.nix
deleted file mode 100644
index e9a079216b73..000000000000
--- a/pkgs/desktops/gnome-3/games/gnome-robots/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, gnome3, gtk3, wrapGAppsHook
-, librsvg, gsound, gettext, itstool, libxml2, libgnome-games-support
-, libgee, meson, ninja, python3, desktop-file-utils, adwaita-icon-theme }:
-
-stdenv.mkDerivation rec {
- pname = "gnome-robots";
- version = "3.38.0";
-
- src = fetchurl {
- url = "mirror://gnome/sources/gnome-robots/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "1qpzpsyj9i5dsfy7anfb2dcm602bjkcgqj86fxvnxy6llx56ks0z";
- };
-
- passthru = {
- updateScript = gnome3.updateScript { packageName = "gnome-robots"; attrPath = "gnome3.gnome-robots"; };
- };
-
- nativeBuildInputs = [
- pkg-config meson ninja python3
- libxml2 wrapGAppsHook gettext itstool desktop-file-utils
- ];
- buildInputs = [
- gtk3 librsvg gsound 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 lib; {
- homepage = "https://wiki.gnome.org/Apps/Robots";
- description = "Avoid the robots and make them crash into each other";
- maintainers = teams.gnome.members;
- license = licenses.gpl2;
- platforms = platforms.linux;
- };
-}