You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nix/languages/cpp/default.nix
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ in
60
60
# NixOS 25.05 is the last version to support GCC 9 - 12. This is included in this flake for backwards compat.
61
61
type=t.ints.betweenminGCCmaxGCC;
62
62
default=maxGCC;
63
-
description="The GCC version to use. Defaults to GCC ${builtins.toStringmaxGCC}. NixOS 25.05 is the last version to support GCC 9 through to 12.";
63
+
description="The GCC version to use. Defaults to GCC ${toStringmaxGCC}. NixOS 25.05 is the last version to support GCC 9 through to 12.";
64
64
};
65
65
};
66
66
@@ -80,7 +80,7 @@ in
80
80
# NixOS 25.05 is the last version to support LLVM 12 - 17. This is included in this flake for backwards compat.
81
81
type=t.ints.betweenminLLVMmaxLLVM;
82
82
default=maxLLVM;
83
-
description="The LLVM version to use. Defaults to LLVM ${builtins.toStringmaxLLVM}. NixOS 25.05 is the last version to support LLVM 12 through to 17.";
83
+
description="The LLVM version to use. Defaults to LLVM ${toStringmaxLLVM}. NixOS 25.05 is the last version to support LLVM 12 through to 17.";
Copy file name to clipboardExpand all lines: nix/languages/fortran/default.nix
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ in
28
28
# NixOS 25.05 is the last version to support GCC 9 - 12. This is included in this flake for backwards compat.
29
29
type=t.ints.betweenminGCCmaxGCC;
30
30
default=maxGCC;
31
-
description="The gfortran version to use. Defaults to GCC ${builtins.toStringmaxGCC}. NixOS 25.05 is the last version to support gfortran 9 through to 12.";
31
+
description="The gfortran version to use. Defaults to GCC ${toStringmaxGCC}. NixOS 25.05 is the last version to support gfortran 9 through to 12.";
0 commit comments