159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
11 lines
229 B
Nix
11 lines
229 B
Nix
{ wrapCC, gcc }:
|
|
# Use the same GCC version as the one from stdenv by default
|
|
wrapCC (
|
|
gcc.cc.override {
|
|
name = "gfortran";
|
|
langFortran = true;
|
|
langCC = false;
|
|
langC = false;
|
|
profiledCompiler = false;
|
|
}
|
|
)
|