mirror of
https://github.com/NixOS/nix.git
synced 2025-12-06 00:51:00 +01:00
curl: patch for netrc regression in Nix
(cherry picked from commit 99208bb8cc)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
parent
e79b38ef59
commit
1258f2b7f8
1 changed files with 2 additions and 2 deletions
|
|
@ -108,7 +108,7 @@
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [(buildPackages.util-linuxMinimal or buildPackages.utillinuxMinimal)];
|
++ lib.optionals stdenv.hostPlatform.isLinux [(buildPackages.util-linuxMinimal or buildPackages.utillinuxMinimal)];
|
||||||
|
|
||||||
buildDeps =
|
buildDeps =
|
||||||
[ curl
|
[ (curl.override { patchNetrcRegression = true; })
|
||||||
bzip2 xz brotli editline
|
bzip2 xz brotli editline
|
||||||
openssl sqlite
|
openssl sqlite
|
||||||
libarchive
|
libarchive
|
||||||
|
|
@ -363,7 +363,7 @@
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ nix
|
[ nix
|
||||||
curl
|
(curl.override { patchNetrcRegression = true; })
|
||||||
bzip2
|
bzip2
|
||||||
xz
|
xz
|
||||||
pkgs.perl
|
pkgs.perl
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue