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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
387 B
Nix
Raw Normal View History

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