mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
Add fallback case when allowAliases is not set
This commit is contained in:
parent
e47ffb5d60
commit
2fb7261976
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ in
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
} // super.lib.optionalAttrs super.config.allowAliases {
|
} // super.lib.optionalAttrs (super.config.allowAliases or true) {
|
||||||
emacsGcc = builtins.trace "emacsGcc has been renamed to emacsNativeComp, please update your expression." emacsNativeComp;
|
emacsGcc = builtins.trace "emacsGcc has been renamed to emacsNativeComp, please update your expression." emacsNativeComp;
|
||||||
emacsPgtkGcc = builtins.trace "emacsPgtkGcc has been renamed to emacsPgtkNativeComp, please update your expression." emacsPgtkNativeComp;
|
emacsPgtkGcc = builtins.trace "emacsPgtkGcc has been renamed to emacsPgtkNativeComp, please update your expression." emacsPgtkNativeComp;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue