quadrapassel: init at 3.16.1

This commit is contained in:
Luca Bruno 2015-07-29 15:14:55 +00:00
parent 21579ef5d0
commit 4ce9e12142
2 changed files with 31 additions and 1 deletions

View File

@ -33,7 +33,9 @@ let
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;
@ -291,6 +293,8 @@ let
swell-foop = callPackage ./games/swell-foop { };
quadrapassel = callPackage ./games/quadrapassel { };
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/
california = callPackage ./misc/california { };

View File

@ -0,0 +1,26 @@
{ 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;
};
}