Invert stable check

Doh!
This commit is contained in:
adisbladis 2020-07-27 13:43:03 +02:00
parent b78c46b983
commit 5191889856
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -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}";