brainix/sources/nixpkgs/pkgs/applications/office/libreoffice/src-still/override.nix
2026-02-13 17:06:24 +09:00

7 lines
330 B
Nix

{ stdenv, ... }:
attrs:
{
NIX_CFLAGS_COMPILE = stdenv.lib.lists.remove "-mno-fma" attrs.NIX_CFLAGS_COMPILE;
configureFlags = stdenv.lib.lists.remove "--without-export-validation" attrs.configureFlags;
meta = attrs.meta // { description = "Comprehensive, professional-quality productivity suite (Still/Stable release)"; };
}