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
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
desktops
/
plasma-5
/
breeze-qt5.nix
blob
bcabd31eea644a7a4f370ef6fcabc170de8c72b2
1
{ mkDerivation
2
, extra-cmake-modules
3
, frameworkintegration
4
, kcmutils
5
, kconfigwidgets
6
, kcoreaddons
7
, kdecoration
8
, kguiaddons
9
, ki18n
10
, kwayland
11
, kwindowsystem
12
, plasma-framework
13
, qtdeclarative
14
, qtx11extras
15
, fftw
16
}:
17
18
mkDerivation {
19
pname = "breeze-qt5";
20
sname = "breeze";
21
nativeBuildInputs = [ extra-cmake-modules ];
22
propagatedBuildInputs = [
23
frameworkintegration
24
kcmutils
25
kconfigwidgets
26
kcoreaddons
27
kdecoration
28
kguiaddons
29
ki18n
30
kwayland
31
kwindowsystem
32
plasma-framework
33
qtdeclarative
34
qtx11extras
35
fftw
36
];
37
outputs = [ "bin" "dev" "out" ];
38
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
39
}