bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
20 lines
467 B
Nix
20 lines
467 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
qtsvg,
|
|
fetchpatch,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ksvg";
|
|
|
|
patches = [
|
|
# Backport patch for SVG rendering glitches with fractional scale
|
|
# FIXME: remove in 6.4
|
|
(fetchpatch {
|
|
url = "https://invent.kde.org/frameworks/ksvg/-/commit/74f9f9cbd226407f8cde08c5cd5a711444e2775d.patch";
|
|
hash = "sha256-i4Wcvo0CkpN2qdlTesnzUyd0mzG1VKbycP5Pd1rHPVg=";
|
|
})
|
|
];
|
|
|
|
extraBuildInputs = [qtdeclarative qtsvg];
|
|
}
|