packages
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user