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