nixpkgs/pkgs/desktops/kde-5/frameworks-5.19/knotifyconfig.nix

14 lines
330 B
Nix
Raw Normal View History

2016-02-14 17:34:58 +01:00
{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig
, ki18n, kio, phonon
}:
kdeFramework {
name = "knotifyconfig";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcompletion kconfig phonon ];
propagatedBuildInputs = [ ki18n kio ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}