nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix

14 lines
330 B
Nix
Raw Normal View History

2015-10-10 18:50:36 +02:00
{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig
, ki18n, kio, phonon
2015-09-27 17:02:10 +02:00
}:
kdeFramework {
2015-09-27 17:02:10 +02:00
name = "knotifyconfig";
nativeBuildInputs = [ extra-cmake-modules ];
2015-10-10 19:29:20 +02:00
buildInputs = [ kcompletion kconfig phonon ];
propagatedBuildInputs = [ ki18n kio ];
2015-09-27 17:02:10 +02:00
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}