mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
gnome3.aisleriot: init at 3.16.2
This commit is contained in:
parent
55d93854ce
commit
1ff4589fd3
2 changed files with 28 additions and 1 deletions
|
@ -34,7 +34,7 @@ let
|
||||||
];
|
];
|
||||||
|
|
||||||
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
||||||
tali quadrapassel gnome-sudoku
|
tali quadrapassel gnome-sudoku aisleriot
|
||||||
];
|
];
|
||||||
|
|
||||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||||
|
@ -296,6 +296,8 @@ let
|
||||||
|
|
||||||
#### Games
|
#### Games
|
||||||
|
|
||||||
|
aisleriot = callPackage ./games/aisleriot { };
|
||||||
|
|
||||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||||
|
|
||||||
iagno = callPackage ./games/iagno { };
|
iagno = callPackage ./games/iagno { };
|
||||||
|
|
25
pkgs/desktops/gnome-3/3.16/games/aisleriot/default.nix
Normal file
25
pkgs/desktops/gnome-3/3.16/games/aisleriot/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue