1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/kde/kdf.nix

16 lines
396 B
Nix
Raw Normal View History

2016-08-26 02:36:45 -04:00
{
2017-05-16 11:56:41 -04:00
mkDerivation, lib,
2017-05-17 15:26:11 -04:00
extra-cmake-modules, kdoctools,
2017-06-21 09:49:51 -04:00
kcmutils, ki18n, kiconthemes, kio, knotifications, kxmlgui,
2016-08-26 02:36:45 -04:00
}:
2017-05-16 11:56:41 -04:00
mkDerivation {
name = "kdf";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];
};
2017-05-17 15:26:11 -04:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 09:49:51 -04:00
buildInputs = [ kcmutils ki18n kiconthemes kio knotifications kxmlgui ];
}