quadrapassel: init at 3.16.1
This commit is contained in:
parent
21579ef5d0
commit
4ce9e12142
@ -33,7 +33,9 @@ let
|
|||||||
nautilus-sendto dconf-editor vinagre
|
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) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||||
inherit (pkgs.gnome2) ORBit2;
|
inherit (pkgs.gnome2) ORBit2;
|
||||||
@ -291,6 +293,8 @@ let
|
|||||||
|
|
||||||
swell-foop = callPackage ./games/swell-foop { };
|
swell-foop = callPackage ./games/swell-foop { };
|
||||||
|
|
||||||
|
quadrapassel = callPackage ./games/quadrapassel { };
|
||||||
|
|
||||||
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/
|
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/
|
||||||
|
|
||||||
california = callPackage ./misc/california { };
|
california = callPackage ./misc/california { };
|
||||||
|
26
pkgs/desktops/gnome-3/3.16/games/quadrapassel/default.nix
Normal file
26
pkgs/desktops/gnome-3/3.16/games/quadrapassel/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user