summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/knotifyconfig.nix
blob: 6739f96183c1da1712e165ee60f707e0385357fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  mkDerivation, lib,
  extra-cmake-modules,
  kcompletion, kconfig, ki18n, kio, phonon, qtbase,
}:

mkDerivation {
  name = "knotifyconfig";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kcompletion kconfig ki18n kio phonon ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}