Skip to content

Commit

Permalink
edk2: fix subhook submodule URL
Browse files Browse the repository at this point in the history
The URL of the subhook submodule has changed, as the original repository is no longer available.
tianocore/edk2#6398

fixes #353769
  • Loading branch information
mjoerg committed Nov 7, 2024
1 parent 83fb6c0 commit db2c89f
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 db2c89f

Please sign in to comment.