blob: 43dd077fe5338fae27d0a61e6fb93696baa86bb3 (
plain)
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
|
{
mkKdeDerivation,
python3,
libxml2,
qtsvg,
}:
mkKdeDerivation {
pname = "breeze-icons";
extraNativeBuildInputs = [
(python3.withPackages (ps: [ ps.lxml ]))
libxml2
];
# This package contains an SVG icon theme and an API forcing its use
extraPropagatedBuildInputs = [
qtsvg
];
# lots of icons, takes forever, does absolutely nothing
dontStrip = true;
# known upstream issue: https://invent.kde.org/frameworks/breeze-icons/-/commit/135e59fb4395c1779a52ab113cc70f7baa53fd5d
dontCheckForBrokenSymlinks = true;
}
|