nixpkgs/pkgs/development/libraries/libraw/default.nix

31 lines
816 B
Nix
Raw Normal View History

{ stdenv, fetchurl, lcms2, pkgconfig
, jasper ? null, withJpeg2k ? false
# disable JPEG2000 support by default as jasper has many CVE
}:
2014-02-13 02:22:39 +00:00
stdenv.mkDerivation rec {
pname = "libraw";
version = "0.19.5";
2014-02-13 02:22:39 +00:00
src = fetchurl {
url = "https://www.libraw.org/data/LibRaw-${version}.tar.gz";
sha256 = "1x827sh6vl8j3ll2ihkcr234y07f31hi1v7sl08jfw3irkbn58j0";
2014-02-13 02:22:39 +00:00
};
2016-09-19 12:32:54 +00:00
outputs = [ "out" "lib" "dev" "doc" ];
buildInputs = stdenv.lib.optionals withJpeg2k [ jasper ];
propagatedBuildInputs = [ lcms2 ];
2014-02-13 02:22:39 +00:00
nativeBuildInputs = [ pkgconfig ];
meta = {
2014-02-13 02:22:39 +00:00
description = "Library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)";
homepage = https://www.libraw.org/;
2014-02-13 02:22:39 +00:00
license = stdenv.lib.licenses.gpl2Plus;
2017-07-13 17:38:51 +00:00
platforms = stdenv.lib.platforms.unix;
2014-02-13 02:22:39 +00:00
};
}