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

@@ -1,6 +1,5 @@
{
stdenv,
fetchFromGitHub,
lib,
MODEL ? "5",
RELEASE_TYPE ? "RELEASE",
@@ -18,11 +17,11 @@
}:
let
inherit (lib.trivial) importJSON;
inherit (lib.${namespace}) versioning;
pname = "edk2";
version = "stable202511";
versionSpec = importJSON ./version.json;
versioning = import ../../lib/versioning.nix { inherit lib pkgs; };
selected = versioning.selectVariant versionSpec (if MODEL == "5" then "mjallen" else null) null;
sources = versioning.mkAllSources selected;