This commit is contained in:
mjallen18
2026-01-21 21:41:01 -06:00
parent a336b0cf60
commit 94c3d6d6ff
20 changed files with 61 additions and 59 deletions

View File

@@ -8,12 +8,14 @@
inputs ? { },
# 2. Make 'self' optional, defaulting to inputs.self (handles both Overlay and Snowfall cases)
self ? inputs.self,
namespace,
...
}@args: # 3. Rename this capture from 'inputs' to 'args' to avoid variable name collision
let
inherit (stdenv) isx86_64 isAarch64 isLinux;
inherit (lib.trivial) importJSON;
inherit (lib.${namespace}) versioning;
arch = (if isx86_64 then "x86_64" else "aarch64");
@@ -21,7 +23,6 @@ let
# Source Versions #
# ######################################################
versionSpec = importJSON ./version.json;
versioning = import ../../lib/versioning.nix { inherit lib pkgs; };
mkVersions = selected:
let
s = selected.sources;