treewide: Remove usage of isNull
isNull "is deprecated; just write e == null instead" says the Nix manual
This commit is contained in:
@@ -96,7 +96,7 @@ let
|
||||
inherit system;
|
||||
};
|
||||
|
||||
cc = if isNull prevStage.gcc-unwrapped
|
||||
cc = if prevStage.gcc-unwrapped == null
|
||||
then null
|
||||
else lib.makeOverridable (import ../../build-support/cc-wrapper) {
|
||||
name = "${name}-gcc-wrapper";
|
||||
|
||||
Reference in New Issue
Block a user