Skip to content

Commit

Permalink
fix: use prev in place of final
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Nov 30, 2023
1 parent a0d4f8f commit c3b783b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/phps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ let
done
''
+ attrs.preConfigure;
} // prev.lib.optionalAttrs (final.stdenv.cc.isClang) {
} // prev.lib.optionalAttrs (prev.stdenv.cc.isClang) {
# Downgrade the following errors to warnings. `-Wint-conversion` only affects PHP 7.3.
NIX_CFLAGS_COMPILE = (attrs.NIX_CFLAGS_COMPILE or "")
+ prev.lib.optionalString (prev.lib.versionOlder args.version "8.0") " -Wno-implicit-int -Wno-implicit-function-declaration"
Expand Down

0 comments on commit c3b783b

Please sign in to comment.