Skip to content

Commit

Permalink
fetchFromGitHub: drop unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank committed Jan 12, 2024
1 parent c28c56f commit 71a024e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/build-support/fetchgithub/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let
useFetchGit = fetchSubmodules || (leaveDotGit == true) || deepClone || forceFetchGit || (sparseCheckout != []);
# We prefer fetchzip in cases we don't need submodules as the hash
# is more stable in that case.
fetcher = if useFetchGit then fetchgit else fetchzip;
fetcher = if useFetchGit then fetchgit else fetchzip.override { withUnzip = false; };
privateAttrs = lib.optionalAttrs private {
netrcPhase = ''
if [ -z "''$${varBase}USERNAME" -o -z "''$${varBase}PASSWORD" ]; then
Expand Down

0 comments on commit 71a024e

Please sign in to comment.