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
339 B
Nix
Raw Normal View History

2016-08-26 02:36:45 -04:00
{
2017-05-16 11:56:41 -04:00
mkDerivation, lib,
extra-cmake-modules, kdoctools, wrapGAppsHook,
2016-08-26 02:36:45 -04:00
kcmutils
}:
2017-05-16 11:56:41 -04:00
mkDerivation {
name = "kdf";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
propagatedBuildInputs = [ kcmutils ];
}