about summary refs log tree commit diff
path: root/pkgs/applications/office/libreoffice/src-still/override.nix
blob: 186f4b17d6aaa5c8cf1fe01cec06ea88d62cea37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, kdeIntegration, commonsLogging, ... }:
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")
    "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar"
    "--without-system-qrcodegen"
  ];
  patches = attrs.patches or [] ++ [ ../xdg-open-brief.patch ]; # drop this when switching to 7.2
}