summary refs log tree commit diff
path: root/pkgs/applications/office/libreoffice/src-still/override.nix
blob: c0880aa3ecb1d55c7c673fd3a25883ac96c1d8b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ stdenv, kdeIntegration, ... }:
attrs:
{
  postConfigure = attrs.postConfigure + ''
    sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/extras/inc/swmodeltestbase.hxx'
  '';
  configureFlags = stdenv.lib.remove "--without-system-qrcodegen"
  (attrs.configureFlags ++ [
    (stdenv.lib.enableFeature kdeIntegration "kde5")
  ]);
  meta = attrs.meta // { description = "Comprehensive, professional-quality productivity suite (Still/Stable release)"; };
}