11 lines
284 B
Nix
11 lines
284 B
Nix
|
{ stdenv, kdeIntegration, ... }:
|
||
|
attrs:
|
||
|
{
|
||
|
postConfigure = attrs.postConfigure + ''
|
||
|
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx'
|
||
|
'';
|
||
|
configureFlags = attrs.configureFlags ++ [
|
||
|
(stdenv.lib.enableFeature kdeIntegration "kf5")
|
||
|
];
|
||
|
}
|