16 lines
396 B
Nix
Raw Normal View History

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