b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
25 lines
561 B
Nix
25 lines
561 B
Nix
{ qtModule
|
|
, qtbase
|
|
, libwebp
|
|
, jasper
|
|
, libmng
|
|
, zlib
|
|
, pkg-config
|
|
, fetchpatch2
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtsvg";
|
|
qtInputs = [ qtbase ];
|
|
buildInputs = [ libwebp jasper libmng zlib ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
patches = [
|
|
# Fix nullptr dereference with invalid SVG
|
|
# https://bugreports.qt.io/projects/QTBUG/issues/QTBUG-117944
|
|
(fetchpatch2 {
|
|
name = "QTBUG-117944.patch";
|
|
url = "https://code.qt.io/cgit/qt/qtsvg.git/patch/?id=edc8ca7f";
|
|
hash = "sha256-kBQYlQqPb0QkRhatQyaGdxE1Y5zHd6/ZEd5zn0gRVoM=";
|
|
})
|
|
];
|
|
}
|