libraw: 0.20.2.p2 -> 0.21.1

This commit is contained in:
rewine 2023-01-28 16:45:59 +08:00 committed by rewine
parent 90a1948a94
commit 453c3b7b91
No known key found for this signature in database
GPG key ID: B00A7D2932F72756

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, lcms2, pkg-config }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "libraw";
version = "0.20.2.p2";
version = "0.21.1";
src = fetchFromGitHub {
owner = "LibRaw";
repo = "LibRaw";
rev = "fedad11e87daad7b7d389a3ef84ccf10b5e84710"; # current 0.20-stable branch
sha256 = "1mklf8lzybzyg75ja34822xlv6h9nw93griyrjjna7darl1dyvja";
rev = version;
sha256 = "sha256-K9mULf6V/TCl5Vu4iuIdSGF9HzQlgNQLRFHIpNbmAlY";
};
outputs = [ "out" "lib" "dev" "doc" ];
@ -22,7 +22,7 @@ stdenv.mkDerivation {
meta = with lib; {
description = "Library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)";
homepage = "https://www.libraw.org/";
license = licenses.gpl2Plus;
license = with licenses; [ cddl lgpl2Plus ];
platforms = platforms.unix;
};
}