mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
14 lines
227 B
Nix
14 lines
227 B
Nix
{ kde, kdelibs, pkgconfig, libraw, lcms2 }:
|
|
|
|
kde {
|
|
|
|
buildInputs = [ kdelibs libraw lcms2 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
description = "Library for decoding RAW images";
|
|
license = "GPLv2";
|
|
};
|
|
}
|