12 lines
303 B
Nix
12 lines
303 B
Nix
{ lib, kdeIntegration, ... }:
|
|
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")
|
|
"--without-system-zxing"
|
|
];
|
|
}
|