Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
553 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
}