mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
12 lines
357 B
Nix
12 lines
357 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")
|
|
];
|
|
patches = [ ../xdg-open-brief.patch ]; # drop this when switching fresh to 7.2.0
|
|
}
|