Merge pull request #213120 from wineee/libraw

libraw: 0.20.2.p2 -> 0.21.1
This commit is contained in:
Nick Cao 2023-01-30 14:36:03 +08:00 committed by GitHub
commit a5c411cfd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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