quadrapassel: init at 3.16.1

Changed files
+31 -1
pkgs
desktops
gnome-3
3.16
games
quadrapassel
+5 -1
pkgs/desktops/gnome-3/3.16/default.nix
···
nautilus-sendto dconf-editor vinagre
];
-
gamesPackages = with gnome3; [ swell-foop lightsoff iagno ];
+
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
+
quadrapassel
+
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
inherit (pkgs.gnome2) ORBit2;
···
lightsoff = callPackage ./games/lightsoff { };
swell-foop = callPackage ./games/swell-foop { };
+
+
quadrapassel = callPackage ./games/quadrapassel { };
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/
+26
pkgs/desktops/gnome-3/3.16/games/quadrapassel/default.nix
···
+
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf
+
, librsvg, libcanberra_gtk3
+
, intltool, itstool, libxml2, clutter, clutter_gtk, wrapGAppsHook }:
+
+
stdenv.mkDerivation rec {
+
name = "quadrapassel-${gnome3.version}.1";
+
+
src = fetchurl {
+
url = "mirror://gnome/sources/quadrapassel/${gnome3.version}/${name}.tar.xz";
+
sha256 = "17c6ddjgmakj615ahnrmrzayjxc2ylr8dddfzi9py875q5vk7grx";
+
};
+
+
buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg
+
libcanberra_gtk3 itstool intltool clutter
+
libxml2 clutter_gtk wrapGAppsHook ];
+
+
enableParallelBuilding = true;
+
+
meta = with stdenv.lib; {
+
homepage = https://wiki.gnome.org/Apps/Quadrapassel;
+
description = "Classic falling-block game, Tetris";
+
maintainers = with maintainers; [ lethalman ];
+
license = licenses.gpl2;
+
platforms = platforms.linux;
+
};
+
}