ce641f4048
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
13 lines
507 B
Nix
13 lines
507 B
Nix
{ lib, kdeIntegration, commonsLogging, ... }:
|
|
attrs:
|
|
{
|
|
postConfigure = attrs.postConfigure + ''
|
|
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx'
|
|
'';
|
|
configureFlags = attrs.configureFlags ++ [
|
|
(lib.enableFeature kdeIntegration "kf5")
|
|
"--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar"
|
|
"--without-system-qrcodegen"
|
|
];
|
|
patches = attrs.patches or [] ++ [ ../xdg-open-brief.patch ]; # drop this when switching to 7.2
|
|
}
|