Skip to content

Commit

Permalink
[24.05] edk2: fix subhook submodule URL (#354193)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcstephens authored Nov 7, 2024
2 parents 83fb6c0 + db2c89f commit 341fc85
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions pkgs/development/compilers/edk2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,20 @@ edk2 = stdenv.mkDerivation rec {
})
];

srcWithVendoring = fetchFromGitHub {
srcWithVendoring = (fetchFromGitHub {
owner = "tianocore";
repo = "edk2";
rev = "edk2-stable${edk2.version}";
fetchSubmodules = true;
hash = "sha256-Nurm6QNKCyV6wvbj0ELdYAL7mbZ0yg/tTwnEJ+N18ng=";
};
}).overrideAttrs
(_: {
env = {
GIT_CONFIG_COUNT = 1;
GIT_CONFIG_KEY_0 = "url.https://github.com/tianocore/edk2-subhook.git.insteadOf";
GIT_CONFIG_VALUE_0 = "https://github.com/Zeex/subhook.git";
};
});

# We don't want EDK2 to keep track of OpenSSL,
# they're frankly bad at it.
Expand Down

0 comments on commit 341fc85

Please sign in to comment.