Skip to content

Commit

Permalink
guile-gnome: nitpicks fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Sep 28, 2017
1 parent d063880 commit b3dab5b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/guile-modules/guile-gnome/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ fetchurl, stdenv, guile, guile-lib, gwrap
, pkgconfig, gconf, glib, gnome_vfs, gtk2
, libglade, libgnome, libgnomecanvas, libgnomeui
, pango, guile-cairo, autoconf, automake, texinfo
, pango, guile-cairo, texinfo
}:

stdenv.mkDerivation rec {
Expand All @@ -10,20 +10,20 @@ stdenv.mkDerivation rec {
version = "2.16.4";

src = fetchurl {
url = "http://ftp.gnu.org/pub/gnu/guile-gnome/${pname}/${name}.tar.gz";
url = "mirror://gnu/guile-gnome/${pname}/${name}.tar.gz";
sha256 = "adabd48ed5993d8528fd604e0aa0d96ad81a61d06da6cdd68323572ad6c216c3";
};

buildInputs = [
autoconf automake texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
texinfo guile gwrap pkgconfig gconf glib gnome_vfs gtk2
libglade libgnome libgnomecanvas libgnomeui pango guile-cairo
] ++ stdenv.lib.optional doCheck guile-lib;

preConfigure = "./autogen.sh";

# The test suite tries to open an X display, which fails.
doCheck = false;

GUILE_AUTO_COMPILE = 0;

meta = with stdenv.lib; {
description = "GNOME bindings for GNU Guile";
longDescription = ''
Expand Down

0 comments on commit b3dab5b

Please sign in to comment.