This commit is contained in:
mjallen18
2026-01-22 16:08:24 -06:00
parent 5b96b59e60
commit 5a22ad0f88
6 changed files with 40 additions and 28 deletions

View File

@@ -46,7 +46,6 @@ in
stdenv.mkDerivation rec {
inherit pname version;
# Add required host tools if needed:
nativeBuildInputs = [
openssl

View File

@@ -15,7 +15,7 @@
let
inherit (stdenv) isx86_64 isAarch64 isLinux;
inherit (lib.trivial) importJSON;
inherit (lib.${namespace}) selectVariant mkAllSources;
inherit (lib.${namespace}) selectVariant;
arch = (if isx86_64 then "x86_64" else "aarch64");

View File

@@ -19,7 +19,7 @@
}:
let
inherit (lib.trivial) importJSON;
inherit (lib.${namespace}) selectVariant mkAllSources;
inherit (lib.${namespace}) selectVariant;
versionSpec = importJSON ./version.json;
selected = selectVariant versionSpec variant null;