repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #274841 from r-ryantm/auto-update/miniaudio
[NixPkgs.git]
/
pkgs
/
desktops
/
plasma-5
/
plasma-pa.nix
blob
0256461db94caa462ffc99ad0d9e04b128553ba1
1
{ mkDerivation
2
, extra-cmake-modules
3
, kdoctools
4
, kcmutils
5
, kconfigwidgets
6
, kcoreaddons
7
, kdeclarative
8
, kglobalaccel
9
, ki18n
10
, kwindowsystem
11
, plasma-framework
12
, qtbase
13
, qtdeclarative
14
, gconf
15
, glib
16
, libcanberra-gtk3
17
, libpulseaudio
18
, sound-theme-freedesktop
19
}:
20
21
mkDerivation {
22
pname = "plasma-pa";
23
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
24
buildInputs = [
25
gconf
26
glib
27
libcanberra-gtk3
28
libpulseaudio
29
sound-theme-freedesktop
30
31
kcmutils
32
kconfigwidgets
33
kcoreaddons
34
kdeclarative
35
kglobalaccel
36
ki18n
37
plasma-framework
38
kwindowsystem
39
40
qtbase
41
qtdeclarative
42
];
43
}