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).
This commit is contained in:
Ricardo M. Correia 2015-07-26 16:05:50 +02:00
parent 5b527968bd
commit 61f1594378

View File

@ -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;