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

15 lines
374 B
Nix
Raw Normal View History

{
mkDerivation, lib,
extra-cmake-modules,
kcompletion, kconfig, ki18n, kio, phonon, qtbase,
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2016-04-21 15:32:21 +00:00
name = "knotifyconfig";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcompletion kconfig ki18n kio phonon ];
propagatedBuildInputs = [ qtbase ];
outputs = [ "out" "dev" ];
2016-04-21 15:32:21 +00:00
}