summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Guibert <david.guibert@gmail.com>2020-09-03 15:59:48 +0200
committerGitHub <noreply@github.com>2020-09-03 15:59:48 +0200
commit9fd106a33cb26bc9d6c4fcd329dd3cba5b63e914 (patch)
treeaa0f4fd22b273a2803bef519f7d1a5b436c9b8a2
parent53bce4da36f7a789929c983d29aebbaf873c7bef (diff)
parentd43db8abbca50a3cbae6273186e43286f88d7892 (diff)
Merge pull request #97015 from B4dM4n/libreoffice-still-fix-build
libreoffice-still: fix build
-rw-r--r--pkgs/applications/office/libreoffice/src-still/override.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/applications/office/libreoffice/src-still/override.nix b/pkgs/applications/office/libreoffice/src-still/override.nix
index c0880aa3ecb1..54935dd7072d 100644
--- a/pkgs/applications/office/libreoffice/src-still/override.nix
+++ b/pkgs/applications/office/libreoffice/src-still/override.nix
@@ -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'
'';