1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/dolphin-plugins.nix

19 lines
419 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
dolphin, kdelibs4support, ki18n, kio, kxmlgui
}:
mkDerivation {
name = "dolphin-plugins";
meta = {
license = [ lib.licenses.gpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-07-30 22:16:36 +01:00
propagatedBuildInputs = [
2017-05-16 16:56:41 +01:00
dolphin kdelibs4support ki18n kio kxmlgui
2016-07-30 22:16:36 +01:00
];
2017-09-25 14:40:41 +01:00
outputs = [ "out" "dev" ];
}