3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/office/libreoffice/src-fresh/override.nix

11 lines
274 B
Nix
Raw Normal View History

{ lib, kdeIntegration, ... }:
attrs:
{
postConfigure = attrs.postConfigure + ''
sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx'
'';
configureFlags = attrs.configureFlags ++ [
2021-01-15 05:42:41 +00:00
(lib.enableFeature kdeIntegration "kf5")
];
2019-12-30 19:51:31 +00:00
}