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