2021-02-05 17:12:51 +00:00
|
|
|
{ lib, kdeIntegration, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
attrs:
|
|
|
|
{
|
|
|
|
postConfigure = attrs.postConfigure + ''
|
|
|
|
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx'
|
|
|
|
'';
|
|
|
|
configureFlags = attrs.configureFlags ++ [
|
2021-01-15 22:18:51 +00:00
|
|
|
(lib.enableFeature kdeIntegration "kf5")
|
2021-12-06 16:07:01 +00:00
|
|
|
"--without-system-zxing"
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
}
|