mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
30 lines
391 B
Nix
30 lines
391 B
Nix
|
{ mkDerivation
|
||
|
, lib
|
||
|
, automoc4
|
||
|
, cmake
|
||
|
, perl
|
||
|
, pkgconfig
|
||
|
, kdelibs
|
||
|
, libkexiv2
|
||
|
, libkdcraw
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "kdegraphics-thumbnailers";
|
||
|
nativeBuildInputs = [
|
||
|
automoc4
|
||
|
cmake
|
||
|
perl
|
||
|
pkgconfig
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kdelibs
|
||
|
libkexiv2
|
||
|
libkdcraw
|
||
|
];
|
||
|
meta = {
|
||
|
license = [ lib.licenses.lgpl21 ];
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|