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
jql: 8.0.0 -> 8.0.2 (#362884)
[NixPkgs.git]
/
pkgs
/
desktops
/
plasma-5
/
breeze-gtk.nix
blob
2974ff51798ac57aa70ec48a2b92dffefa362da1
1
{
2
mkDerivation,
3
extra-cmake-modules,
4
qtbase,
5
sassc,
6
python3,
7
breeze-qt5,
8
}:
9
10
mkDerivation {
11
pname = "breeze-gtk";
12
nativeBuildInputs = [
13
extra-cmake-modules
14
sassc
15
python3
16
python3.pkgs.pycairo
17
breeze-qt5
18
];
19
buildInputs = [ qtbase ];
20
patches = [
21
./patches/0001-fix-add-executable-bit.patch
22
];
23
cmakeFlags = [ "-DWITH_GTK3_VERSION=3.22" ];
24
}