mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
libreoffice: fix eval
This commit is contained in:
parent
8d8324b958
commit
2093fa784a
@ -57,7 +57,7 @@ in (stdenv.mkDerivation rec {
|
||||
|
||||
# For some reason librdf_redland sometimes refers to rasqal.h instead
|
||||
# of rasqal/rasqal.h
|
||||
NIX_CFLAGS_COMPILE = builtins.toString ([ "-I${librdf_rasqal}/include/rasqal" ] ++ lib.optional stdenv.isx86_64 "-mno-fma");
|
||||
NIX_CFLAGS_COMPILE = "-I${librdf_rasqal}/include/rasqal";
|
||||
|
||||
patches = [
|
||||
./xdg-open-brief.patch
|
||||
|
@ -1 +1,4 @@
|
||||
args: f: {}
|
||||
{ stdenv, ... }:
|
||||
attrs: {
|
||||
NIX_CFLAGS_COMPILE = attrs.NIX_CFLAGS_COMPILE + stdenv.lib.optionalString stdenv.isx86_64 " -mno-fma";
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
{ 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)"; };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user