summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.16
diff options
context:
space:
mode:
authorJascha Geerds <jg@ekby.de>2015-08-13 14:42:20 +0200
committerJascha Geerds <jg@ekby.de>2015-08-13 14:43:06 +0200
commit61557fbe5da7c7baf04d25205607afd10b65cd91 (patch)
treef8155cc93b96fb35a68eb1fcf2df58e9d19bce70 /pkgs/desktops/gnome-3/3.16
parentae8b67037e43ed7016fcf6ae1e526c389492b08e (diff)
downloadnixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.tar
nixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.tar.gz
nixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.tar.bz2
nixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.tar.lz
nixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.tar.xz
nixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.tar.zst
nixlib-61557fbe5da7c7baf04d25205607afd10b65cd91.zip
gnome-nibbles: init at 3.16.1
Diffstat (limited to 'pkgs/desktops/gnome-3/3.16')
-rw-r--r--pkgs/desktops/gnome-3/3.16/default.nix4
-rw-r--r--pkgs/desktops/gnome-3/3.16/games/gnome-nibbles/default.nix25
2 files changed, 28 insertions, 1 deletions
diff --git a/pkgs/desktops/gnome-3/3.16/default.nix b/pkgs/desktops/gnome-3/3.16/default.nix
index 00a26e33b050..125ea206dda9 100644
--- a/pkgs/desktops/gnome-3/3.16/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/default.nix
@@ -36,7 +36,7 @@ let
   gamesPackages = with gnome3; [ swell-foop lightsoff iagno
     tali quadrapassel gnome-sudoku aisleriot five-or-more
     four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
-    gnome-mines
+    gnome-mines gnome-nibbles
   ];
 
   inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@@ -312,6 +312,8 @@ let
 
   gnome-mines = callPackage ./games/gnome-mines { };
 
+  gnome-nibbles = callPackage ./games/gnome-nibbles { };
+
   gnome-sudoku = callPackage ./games/gnome-sudoku { };
 
   iagno = callPackage ./games/iagno { };
diff --git a/pkgs/desktops/gnome-3/3.16/games/gnome-nibbles/default.nix b/pkgs/desktops/gnome-3/3.16/games/gnome-nibbles/default.nix
new file mode 100644
index 000000000000..8fde848fe1f7
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.16/games/gnome-nibbles/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
+, librsvg, libcanberra_gtk3, clutter_gtk, intltool, itstool
+, libxml2, hicolor_icon_theme }:
+
+stdenv.mkDerivation rec {
+  name = "gnome-nibbles-${gnome3.version}.1";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/gnome-nibbles/${gnome3.version}/${name}.tar.xz";
+    sha256 = "1384hc7vx3i1jkmc1pw1cjh61jymq9441ci1k06vjz62r9as1nmx";
+  };
+
+  buildInputs = [
+    pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2
+    librsvg libcanberra_gtk3 hicolor_icon_theme clutter_gtk
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = https://wiki.gnome.org/Apps/Nibbles;
+    description = "Guide a worm around a maze";
+    maintainers = gnome3.maintainers;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+  };
+}