summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix
blob: 9e5d256741f62b646db0718d61138c396c2fc01e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3
, wrapGAppsHook, gconf, librsvg, libxml2, desktop_file_utils
, guile_2_0, libcanberra_gtk3 }:

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

  configureFlags = [ "--with-card-theme-formats=svg" ];

  buildInputs = [ pkgconfig intltool itstool gtk3 wrapGAppsHook gconf
                  librsvg libxml2 desktop_file_utils guile_2_0 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;
  };
}