2021-01-22 00:00:13 +07:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, lcms2, pkg-config }:
|
2014-02-13 04:22:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libraw";
|
2020-10-23 22:40:06 +00:00
|
|
|
version = "0.20.2";
|
2014-02-13 04:22:39 +02:00
|
|
|
|
2020-10-23 22:40:06 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LibRaw";
|
|
|
|
repo = "LibRaw";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "16nm4r2l5501c9zvz25pzajq5id592jhn068scjxhr8np2cblybc";
|
2014-02-13 04:22:39 +02:00
|
|
|
};
|
|
|
|
|
2016-09-19 14:32:54 +02:00
|
|
|
outputs = [ "out" "lib" "dev" "doc" ];
|
|
|
|
|
2016-08-12 14:12:36 +02:00
|
|
|
propagatedBuildInputs = [ lcms2 ];
|
2014-02-13 04:22:39 +02:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2014-02-13 04:22:39 +02:00
|
|
|
|
2020-10-23 22:40:06 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2014-02-13 04:22:39 +02:00
|
|
|
description = "Library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://www.libraw.org/";
|
2020-10-23 22:40:06 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
2014-02-13 04:22:39 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|