mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
Invert stable check
Doh!
This commit is contained in:
parent
b78c46b983
commit
5191889856
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ let
|
|||
repoMeta = super.lib.importJSON jsonFile;
|
||||
|
||||
# The nativeComp passthru attribute is used a heuristic to check if we're on 20.03 or older
|
||||
isStable = super.lib.hasAttr "nativeComp" (old.passthru or {});
|
||||
isStable = !(super.lib.hasAttr "nativeComp" (old.passthru or {}));
|
||||
|
||||
attrs = {
|
||||
name = "${namePrefix}-${repoMeta.version}";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue