Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
553 B
Nix
26 lines
553 B
Nix
{
|
|
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;
|
|
}
|