mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
libraw: package 0.16.0
This commit is contained in:
parent
f30491bdad
commit
d91696c1f3
21
pkgs/development/libraries/libraw/default.nix
Normal file
21
pkgs/development/libraries/libraw/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, lcms2, jasper, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libraw-0.16.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.libraw.org/data/LibRaw-0.16.0.tar.gz;
|
||||
sha256 = "15ng4s24grib39r0nlgrf18r2j9yh43qyx4vbif38d95xiqkix3i";
|
||||
};
|
||||
|
||||
buildInputs = [ lcms2 jasper ] ;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
meta = {
|
||||
description = "Library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)";
|
||||
homepage = http://www.libraw.org/;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
|
@ -6888,6 +6888,8 @@ let
|
||||
|
||||
libsemanage = callPackage ../os-specific/linux/libsemanage { };
|
||||
|
||||
libraw = callPackage ../development/libraries/libraw { };
|
||||
|
||||
libraw1394 = callPackage ../development/libraries/libraw1394 { };
|
||||
|
||||
libsexy = callPackage ../development/libraries/libsexy { };
|
||||
|
Loading…
Reference in New Issue
Block a user