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

19 lines
387 B
Nix
Raw Permalink Normal View History

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