about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-05-01 20:39:36 +0200
committerGitHub <noreply@github.com>2017-05-01 20:39:36 +0200
commitcb186efb64c525e39ae4fce6666d226294c12d06 (patch)
treeebba2d44512c284d1aa07aaaeb5567a2e31d6451 /pkgs/desktops
parent1de27d461c6a1bd1d8efdd742192951a4921f15f (diff)
parentb9447df8797e0ad2af2277766607fe05d3a83efb (diff)
downloadnixlib-cb186efb64c525e39ae4fce6666d226294c12d06.tar
nixlib-cb186efb64c525e39ae4fce6666d226294c12d06.tar.gz
nixlib-cb186efb64c525e39ae4fce6666d226294c12d06.tar.bz2
nixlib-cb186efb64c525e39ae4fce6666d226294c12d06.tar.lz
nixlib-cb186efb64c525e39ae4fce6666d226294c12d06.tar.xz
nixlib-cb186efb64c525e39ae4fce6666d226294c12d06.tar.zst
nixlib-cb186efb64c525e39ae4fce6666d226294c12d06.zip
Merge pull request #25359 from pbogdan/aisleriot-fix-build-failure
gnome3.aisleriot: fix build failure.
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix b/pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix
index e149a0b31264..9e5d256741f6 100644
--- a/pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix
+++ b/pkgs/desktops/gnome-3/3.22/games/aisleriot/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3
 , wrapGAppsHook, gconf, librsvg, libxml2, desktop_file_utils
-, guile, libcanberra_gtk3 }:
+, guile_2_0, libcanberra_gtk3 }:
 
 stdenv.mkDerivation rec {
   inherit (import ./src.nix fetchurl) name src;
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
   configureFlags = [ "--with-card-theme-formats=svg" ];
 
   buildInputs = [ pkgconfig intltool itstool gtk3 wrapGAppsHook gconf
-                  librsvg libxml2 desktop_file_utils guile libcanberra_gtk3 ];
+                  librsvg libxml2 desktop_file_utils guile_2_0 libcanberra_gtk3 ];
 
   meta = with stdenv.lib; {
     homepage = https://wiki.gnome.org/Apps/Aisleriot;