summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-06-09 08:42:30 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-06-09 08:42:30 +0000
commita9414f42606e8435201eb5fb496dd79191cfc7b5 (patch)
tree52e522ba5a6716b2898c7cbd0a8aa4b109679b7e /pkgs
parent1f9754bf071dfbca528783cbf25b80e5ff2b1d9f (diff)
downloadnixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.tar
nixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.tar.gz
nixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.tar.bz2
nixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.tar.lz
nixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.tar.xz
nixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.tar.zst
nixpkgs-a9414f42606e8435201eb5fb496dd79191cfc7b5.zip
Updatin feh.
This fixes a bug I reported: the last line or column were often not shown, scrolling or zooming.

svn path=/nixpkgs/trunk/; revision=22190
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/feh/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix
index 9f520bb37fa..e9d86aca52d 100644
--- a/pkgs/applications/graphics/feh/default.nix
+++ b/pkgs/applications/graphics/feh/default.nix
@@ -2,11 +2,11 @@
 , libXinerama }:
 
 stdenv.mkDerivation {
-  name = "feh-1.6";
+  name = "feh-1.6.1";
 
   src = fetchurl {
-    url = https://derf.homelinux.org/projects/feh/feh-1.6.tar.bz2;
-    sha256 = "0wkgdxvl0kdcwab815gw0xk3iniain6l3b1x4d4kclf170wcnjqi";
+    url = http://www.chaosdorf.de/~derf/feh/feh-1.6.1.tar.bz2;
+    sha256 = "1mv09b34ar0dx4wl22xak2g554xgpylicqy5zbnk3bh66vn9pxz2";
   };
 
   buildInputs = [x11 imlib2 giblib libjpeg libpng libXinerama];