3
0
Fork 0
forked from mirrors/nixpkgs

gnome-klotski: init at 3.16.1

This commit is contained in:
Jascha Geerds 2015-08-13 12:54:18 +02:00
parent ab4d1e3bb3
commit 9a6dd2b760
2 changed files with 27 additions and 1 deletions

View file

@ -35,7 +35,7 @@ let
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
tali quadrapassel gnome-sudoku aisleriot five-or-more
four-in-a-row gnome-chess
four-in-a-row gnome-chess gnome-klotski
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -305,6 +305,8 @@ let
gnome-chess = callPackage ./games/gnome-chess { };
gnome-klotski = callPackage ./games/gnome-klotski { };
gnome-sudoku = callPackage ./games/gnome-sudoku { };
iagno = callPackage ./games/iagno { };

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, librsvg, libxml2, intltool, itstool, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "gnome-klotski-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-klotski/${gnome3.version}/${name}.tar.xz";
sha256 = "0a64935c7pp51jhaf29q9zlx3lamj7zrhyff7clvv0w8v1w6gpax";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool itstool librsvg libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Klotski;
description = "Slide blocks to solve the puzzle";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}