nixpkgs-suyu/pkgs/applications/office/libreoffice/src-still/override.nix
2021-08-19 19:06:19 +03:00

11 lines
315 B
Nix

{ 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")
];
patches = [ ../xdg-open-brief.patch ];
}