2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3
|
|
|
|
, wrapGAppsHook, gconf, librsvg, libxml2, desktop_file_utils
|
2017-04-30 19:43:59 +01:00
|
|
|
, guile_2_0, libcanberra_gtk3 }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
|
|
|
configureFlags = [ "--with-card-theme-formats=svg" ];
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ intltool itstool gtk3 wrapGAppsHook gconf
|
2017-04-30 19:43:59 +01:00
|
|
|
librsvg libxml2 desktop_file_utils guile_2_0 libcanberra_gtk3 ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|