2020-02-17 21:08:35 +00:00
|
|
|
{ stdenv, kdeIntegration, ... }:
|
2019-12-18 01:11:51 +00:00
|
|
|
attrs:
|
|
|
|
{
|
2020-02-17 21:08:35 +00:00
|
|
|
postConfigure = attrs.postConfigure + ''
|
|
|
|
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/extras/inc/swmodeltestbase.hxx'
|
|
|
|
'';
|
|
|
|
configureFlags = stdenv.lib.remove "--without-system-qrcodegen"
|
|
|
|
(attrs.configureFlags ++ [
|
|
|
|
(stdenv.lib.enableFeature kdeIntegration "kde5")
|
|
|
|
]);
|
2019-12-18 01:11:51 +00:00
|
|
|
meta = attrs.meta // { description = "Comprehensive, professional-quality productivity suite (Still/Stable release)"; };
|
|
|
|
}
|