2021-12-06 16:07:01 +00:00
|
|
|
{ lib, kdeIntegration, commonsLogging, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
attrs:
|
|
|
|
{
|
|
|
|
postConfigure = attrs.postConfigure + ''
|
2021-02-13 14:23:35 +00:00
|
|
|
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx'
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
2021-02-13 14:23:35 +00:00
|
|
|
configureFlags = attrs.configureFlags ++ [
|
|
|
|
(lib.enableFeature kdeIntegration "kf5")
|
2021-12-06 16:07:01 +00:00
|
|
|
"--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar"
|
|
|
|
"--without-system-qrcodegen"
|
2021-02-13 14:23:35 +00:00
|
|
|
];
|
2021-12-06 16:07:01 +00:00
|
|
|
patches = attrs.patches or [] ++ [ ../xdg-open-brief.patch ]; # drop this when switching to 7.2
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|