12 lines
229 B
Nix
12 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;
|
||
|
}
|
||
|
)
|