nixpkgs/pkgs/applications/kde-apps-15.08/ksnapshot.nix

30 lines
377 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 15:03:46 +00:00
, lib
, automoc4
, cmake
, perl
, pkgconfig
, kdelibs
, libkipi
, libXfixes
}:
kdeApp {
2015-09-27 15:03:46 +00:00
name = "ksnapshot";
nativeBuildInputs = [
automoc4
cmake
perl
pkgconfig
];
buildInputs = [
kdelibs
libkipi
libXfixes
];
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}