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

19 lines
387 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
dolphin, ki18n, kio, kxmlgui
}:
mkDerivation {
2020-12-24 18:05:07 -05:00
pname = "dolphin-plugins";
meta = {
license = [ lib.licenses.gpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-07-30 17:16:36 -04:00
propagatedBuildInputs = [
dolphin ki18n kio kxmlgui
2016-07-30 17:16:36 -04:00
];
2017-09-25 09:40:41 -04:00
outputs = [ "out" "dev" ];
}