Merge pull request #9066 from Bevaz/ccache-isGNU

ccache: set attribute isGNU = true

lethalman 00821f40 b1b681c8

Changed files
+1 -1
pkgs
development
tools
misc
ccache
+1 -1
pkgs/development/tools/misc/ccache/default.nix
···
passthru = {
# A derivation that provides gcc and g++ commands, but that
# will end up calling ccache for the given cacheDir
-
links = extraConfig : (runCommand "ccache-links" { passthru.gcc = gcc; }
+
links = extraConfig : (runCommand "ccache-links" { passthru.gcc = gcc; passthru.isGNU = true; }
''
mkdir -p $out/bin
if [ -x "${gcc.cc}/bin/gcc" ]; then