about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-pa.nix
blob: 0256461db94caa462ffc99ad0d9e04b128553ba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ mkDerivation
, extra-cmake-modules
, kdoctools
, kcmutils
, kconfigwidgets
, kcoreaddons
, kdeclarative
, kglobalaccel
, ki18n
, kwindowsystem
, plasma-framework
, qtbase
, qtdeclarative
, gconf
, glib
, libcanberra-gtk3
, libpulseaudio
, sound-theme-freedesktop
}:

mkDerivation {
  pname = "plasma-pa";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    gconf
    glib
    libcanberra-gtk3
    libpulseaudio
    sound-theme-freedesktop

    kcmutils
    kconfigwidgets
    kcoreaddons
    kdeclarative
    kglobalaccel
    ki18n
    plasma-framework
    kwindowsystem

    qtbase
    qtdeclarative
  ];
}