0594e27df3
https://github.com/LibRaw/LibRaw/blob/0.20.2/Changelog.txt https://nvd.nist.gov/vuln/detail/CVE-2020-15365 https://nvd.nist.gov/vuln/detail/CVE-2020-15503 https://nvd.nist.gov/vuln/detail/CVE-2020-24890
30 lines
730 B
Nix
30 lines
730 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, lcms2, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libraw";
|
|
version = "0.20.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LibRaw";
|
|
repo = "LibRaw";
|
|
rev = version;
|
|
sha256 = "16nm4r2l5501c9zvz25pzajq5id592jhn068scjxhr8np2cblybc";
|
|
};
|
|
|
|
outputs = [ "out" "lib" "dev" "doc" ];
|
|
|
|
propagatedBuildInputs = [ lcms2 ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.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;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|