summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorFrançois-René Rideau <fare@tunes.org>2019-03-16 18:58:58 -0400
committerxeji <36407913+xeji@users.noreply.github.com>2019-03-16 23:58:58 +0100
commit4b00757206fa38fcc5fea8180f8e625e3a5bf04f (patch)
tree23488294877341d366ff09698e84c5eca459eb7e /pkgs/applications/graphics
parent44b5166f9136bc16adda3d8c83f2b12a2ee78f1b (diff)
downloadnixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.tar
nixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.tar.gz
nixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.tar.bz2
nixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.tar.lz
nixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.tar.xz
nixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.tar.zst
nixpkgs-4b00757206fa38fcc5fea8180f8e625e3a5bf04f.zip
qiv: 2.3.1 -> 2.3.2 (#57729)
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/qiv/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/qiv/default.nix b/pkgs/applications/graphics/qiv/default.nix
index 8e6058d6998..ce08e2b1be9 100644
--- a/pkgs/applications/graphics/qiv/default.nix
+++ b/pkgs/applications/graphics/qiv/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, pkgconfig, gtk2, imlib2, file, lcms2, libexif } :
 
 stdenv.mkDerivation (rec {
-  version = "2.3.1";
+  version = "2.3.2";
   name = "qiv-${version}";
 
   src = fetchurl {
     url = "https://spiegl.de/qiv/download/${name}.tgz";
-    sha256 = "1rlf5h67vhj7n1y7jqkm9k115nfnzpwngj3kzqsi2lg676srclv7";
+    sha256 = "1mc0f2nnas4q0d7zc9r6g4z93i32xlx0p9hl4fn5zkyml24a1q28";
   };
 
   nativeBuildInputs = [ pkgconfig ];
@@ -15,6 +15,7 @@ stdenv.mkDerivation (rec {
   preBuild=''
     substituteInPlace Makefile --replace /usr/local "$out"
     substituteInPlace Makefile --replace /man/ /share/man/
+    substituteInPlace Makefile --replace /share/share/ /share/
   '';
 
   meta = with stdenv.lib; {