mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
14 lines
252 B
Nix
14 lines
252 B
Nix
{ stdenv, kde, kdelibs, pkgconfig, libraw, lcms2 }:
|
|
|
|
kde {
|
|
|
|
buildInputs = [ kdelibs libraw lcms2 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
description = "Library for decoding RAW images";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|