summary refs log tree commit diff
path: root/pkgs/applications/office/libreoffice/src-fresh/override.nix
blob: 60e08735d2e6b7915b18f81aaed07b8545db1fab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ 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")
  ];
}