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

28 lines
695 B
Nix
Raw Normal View History

2014-02-13 02:22:39 +00:00
{ stdenv, fetchurl, lcms2, jasper, pkgconfig }:
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 13:32:54 +01:00
outputs = [ "out" "lib" "dev" "doc" ];
buildInputs = [ 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 18:38:51 +01:00
platforms = stdenv.lib.platforms.unix;
2014-02-13 02:22:39 +00:00
};
}