mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
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;
|
|
}
|
|
)
|