about summary refs log tree commit diff
path: root/pkgs/kde/frameworks/ksvg/default.nix
blob: 0aa6053f00974021994fddcf388e54f0885b6217 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  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];
}