gnome3.aisleriot: init at 3.16.2

This commit is contained in:
Jascha Geerds 2015-08-12 23:49:25 +02:00
parent 55d93854ce
commit 1ff4589fd3
2 changed files with 28 additions and 1 deletions

View File

@ -34,7 +34,7 @@ let
];
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
tali quadrapassel gnome-sudoku
tali quadrapassel gnome-sudoku aisleriot
];
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
@ -296,6 +296,8 @@ let
#### Games
aisleriot = callPackage ./games/aisleriot { };
gnome-sudoku = callPackage ./games/gnome-sudoku { };
iagno = callPackage ./games/iagno { };

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3
, wrapGAppsHook, gconf, librsvg, libxml2, desktop_file_utils
, guile, libcanberra_gtk3 }:
stdenv.mkDerivation rec {
name = "aisleriot-${gnome3.version}.2";
src = fetchurl {
url = "mirror://gnome/sources/aisleriot/${gnome3.version}/${name}.tar.xz";
sha256 = "0rncdg21ys7ik971yw75qbawq89mikbh4dq5mg2msmrl6xsgv0zl";
};
configureFlags = [ "--with-card-theme-formats=svg" ];
buildInputs = [ pkgconfig intltool itstool gtk3 wrapGAppsHook gconf
librsvg libxml2 desktop_file_utils guile libcanberra_gtk3 ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Aisleriot;
description = "A collection of patience games written in guile scheme";
maintainers = gnome3.maintainers;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}