summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-01-02 17:08:41 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-01-02 17:15:20 +0100
commitfee59b1235e658954b207ff6679264654c4708d2 (patch)
tree152f3ed7c62cdf33546076531716540ec859b864 /pkgs/applications
parentca9d370f5604d76da19d10a4b669c851fc39d889 (diff)
downloadnixlib-fee59b1235e658954b207ff6679264654c4708d2.tar
nixlib-fee59b1235e658954b207ff6679264654c4708d2.tar.gz
nixlib-fee59b1235e658954b207ff6679264654c4708d2.tar.bz2
nixlib-fee59b1235e658954b207ff6679264654c4708d2.tar.lz
nixlib-fee59b1235e658954b207ff6679264654c4708d2.tar.xz
nixlib-fee59b1235e658954b207ff6679264654c4708d2.tar.zst
nixlib-fee59b1235e658954b207ff6679264654c4708d2.zip
geeqie: Revert to 1.1
Version 1.2 has some relatively critical issues:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=762257
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765437

Until these are fixed, it's better to stick to 1.1.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/geeqie/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/graphics/geeqie/default.nix b/pkgs/applications/graphics/geeqie/default.nix
index 033a2027ec6b..62105c2c09d5 100644
--- a/pkgs/applications/graphics/geeqie/default.nix
+++ b/pkgs/applications/graphics/geeqie/default.nix
@@ -1,22 +1,20 @@
-{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, gtk, libpng, exiv2
+{ stdenv, fetchurl, pkgconfig, gtk, libpng, exiv2
 , lcms, intltool, gettext, libchamplain, fbida
 }:
 
 stdenv.mkDerivation rec {
   name = "geeqie-${version}";
-  version = "1.2";
+  version = "1.1";
 
   src = fetchurl {
-    url = mirror://debian/pool/main/g/geeqie/geeqie_1.2.orig.tar.gz;
-    sha256 = "0wkcpyh3f6ig36x1q6h9iqgq225w37visip48m72j8rpghmv1rn3";
+    url = "mirror://sourceforge/geeqie/${name}.tar.gz";
+    sha256 = "1kzy39z9505xkayyx7rjj2wda76xy3ch1s5z35zn8yli54ffhi2m";
   };
 
   configureFlags = [ "--enable-gps" ];
 
-  preConfigure = "./autogen.sh";
-
   buildInputs = [
-    autoconf automake libtool pkgconfig gtk libpng exiv2 lcms intltool gettext
+    pkgconfig gtk libpng exiv2 lcms intltool gettext
     #libchamplain
   ];