From 61f1594378103cd334267d382d941b59730f6871 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Sun, 26 Jul 2015 16:05:50 +0200 Subject: [PATCH] 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). --- pkgs/development/libraries/libraw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libraw/default.nix b/pkgs/development/libraries/libraw/default.nix index 3e0d2348a50..d272ad18492 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;