summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo M. Correia <rcorreia@wizy.org>2015-07-26 16:05:50 +0200
committerRicardo M. Correia <rcorreia@wizy.org>2015-07-26 16:11:08 +0200
commit61f1594378103cd334267d382d941b59730f6871 (patch)
treebd5037aba82730c2ad2a141197bb92858b9dc0c6
parent5b527968bd227f59554c07b2f4ae70dfbe9b9b08 (diff)
downloadnixlib-61f1594378103cd334267d382d941b59730f6871.tar
nixlib-61f1594378103cd334267d382d941b59730f6871.tar.gz
nixlib-61f1594378103cd334267d382d941b59730f6871.tar.bz2
nixlib-61f1594378103cd334267d382d941b59730f6871.tar.lz
nixlib-61f1594378103cd334267d382d941b59730f6871.tar.xz
nixlib-61f1594378103cd334267d382d941b59730f6871.tar.zst
nixlib-61f1594378103cd334267d382d941b59730f6871.zip
libraw: fix version number (0.16.1 -> 0.16.0)
The last commit that touched this library updated the version number but
not the hash. I opted into fixing the version number rather than the
hash because actually updating libraw into version 0.16.1 or later
causes a build failure in libkdcraw and therefore breaks gwenview (which
is one of the main KDE apps).
-rw-r--r--pkgs/development/libraries/libraw/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libraw/default.nix b/pkgs/development/libraries/libraw/default.nix
index 3e0d2348a50d..d272ad184925 100644
--- a/pkgs/development/libraries/libraw/default.nix
+++ b/pkgs/development/libraries/libraw/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   name = "libraw-${version}";
-  version = "0.16.1";
+  version = "0.16.0";
 
   src = fetchurl {
     url = "http://www.libraw.org/data/LibRaw-${version}.tar.gz";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
 
-  meta = { 
+  meta = {
     description = "Library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)";
     homepage = http://www.libraw.org/;
     license = stdenv.lib.licenses.gpl2Plus;