about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-10-11 18:06:46 +0200
committerDomen Kožar <domen@dev.si>2014-10-11 18:06:46 +0200
commit51ac8675519e1eea634fdd008c4d536300f2cbbc (patch)
tree76eb1f0bd25721f81383a295f02d545d17a64d96 /pkgs/applications/graphics
parent01854619cd5a39ae4c62180c66e46097101a1119 (diff)
downloadnixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.tar
nixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.tar.gz
nixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.tar.bz2
nixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.tar.lz
nixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.tar.xz
nixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.tar.zst
nixlib-51ac8675519e1eea634fdd008c4d536300f2cbbc.zip
sxiv: 1.1.1 - 1.2
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/sxiv/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/sxiv/default.nix b/pkgs/applications/graphics/sxiv/default.nix
index 30513577d04b..9997d5ec734b 100644
--- a/pkgs/applications/graphics/sxiv/default.nix
+++ b/pkgs/applications/graphics/sxiv/default.nix
@@ -1,14 +1,16 @@
 { stdenv, fetchurl, libX11, imlib2, giflib }:
 
-stdenv.mkDerivation {
-  name = "sxiv-1.1.1";
+stdenv.mkDerivation rec {
+  name = "sxiv-1.2";
 
   src = fetchurl {
-    url = "https://github.com/muennich/sxiv/archive/v1.1.1.tar.gz";
-    name = "sxiv-1.1.tar.gz";
-    sha256 = "07r8125xa8d5q71ql71s4i1dx4swy8hypxh2s5h7z2jnn5y9nmih";
+    url = "https://github.com/muennich/sxiv/archive/v1.2.tar.gz";
+    name = "${name}.tar.gz";
+    sha256 = "1wwcxy2adc67xd8x6c2sayy1cjcwrv2lvv1iwln7y4w992gbcxmc";
   };
 
+  patches = [ ./146.patch ];
+
   buildInputs = [ libX11 imlib2 giflib ];
 
   prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';