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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1013 B
Nix
Raw Normal View History

2023-08-12 14:34:46 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, lcms2
, pkg-config
}:
2014-02-13 02:22:39 +00:00
2023-01-28 08:45:59 +00:00
stdenv.mkDerivation rec {
pname = "libraw";
2023-01-28 08:45:59 +00:00
version = "0.21.1";
2014-02-13 02:22:39 +00:00
src = fetchFromGitHub {
owner = "LibRaw";
repo = "LibRaw";
2023-01-28 08:45:59 +00:00
rev = version;
sha256 = "sha256-K9mULf6V/TCl5Vu4iuIdSGF9HzQlgNQLRFHIpNbmAlY";
2014-02-13 02:22:39 +00:00
};
2023-08-12 14:34:46 +00:00
patches = [
(fetchpatch {
name = "CVE-2023-1729.patch";
url = "https://github.com/LibRaw/LibRaw/commit/9ab70f6dca19229cb5caad7cc31af4e7501bac93.patch";
hash = "sha256-OAyqphxvtSM15NI77HwtGTmTmP9YNu3xhZ6D1CceJ7I=";
})
];
2016-09-19 12:32:54 +00:00
outputs = [ "out" "lib" "dev" "doc" ];
propagatedBuildInputs = [ lcms2 ];
2014-02-13 02:22:39 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2014-02-13 02:22:39 +00:00
enableParallelBuilding = true;
meta = with lib; {
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/";
2023-01-28 08:45:59 +00:00
license = with licenses; [ cddl lgpl2Plus ];
platforms = platforms.unix;
2014-02-13 02:22:39 +00:00
};
}