libreoffice-still: fix build

gstqt5
Fabian Möller 2020-09-03 14:05:25 +02:00
parent 766958b546
commit d43db8abbc
No known key found for this signature in database
GPG Key ID: 70B29D65DD8A7E31
1 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
{ stdenv, kdeIntegration, ... }:
{ stdenv, kdeIntegration, fetchpatch, ... }:
attrs:
{
patches = attrs.patches or [ ] ++ [
(fetchpatch {
url = "https://git.pld-linux.org/gitweb.cgi?p=packages/libreoffice.git;a=blob_plain;f=poppler-0.86.patch;h=76b8356d5f22ef537a83b0f9b0debab591f152fe;hb=a2737a61353e305a9ee69640fb20d4582c218008";
name = "poppler-0.86.patch";
sha256 = "0q6k4l8imgp8ailcv0qx5l83afyw44hah24fi7gjrm9xgv5sbb8j";
})
];
postConfigure = attrs.postConfigure + ''
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/extras/inc/swmodeltestbase.hxx'
'';