nixpkgs/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix

32 lines
429 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 17:03:46 +02:00
, lib
, extra-cmake-modules
, kdoctools
, kxmlgui
, ki18n
, kio
, kdelibs4support
, dolphin
}:
kdeApp {
2015-09-27 17:03:46 +02:00
name = "dolphin-plugins";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
kxmlgui
dolphin
];
2015-10-10 18:19:37 +02:00
propagatedBuildInputs = [
kdelibs4support
2015-10-10 18:50:36 +02:00
ki18n
2015-10-10 19:29:20 +02:00
kio
2015-10-10 18:19:37 +02:00
];
2015-09-27 17:03:46 +02:00
meta = {
license = [ lib.licenses.gpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}