summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Winslow <rw@users.noreply.github.com>2019-08-14 07:24:34 -0700
committerMatthew Bauer <mjbauer95@gmail.com>2019-08-14 10:24:34 -0400
commite91d400dff8518d6da1e6d09da174e8dba0ce978 (patch)
tree0961d1b59c3867340fe18c5afcfdb1dac7fe52d8
parent4202715c58da59e319c54bc0f5c17a511821a316 (diff)
downloadnixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.tar
nixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.tar.gz
nixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.tar.bz2
nixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.tar.lz
nixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.tar.xz
nixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.tar.zst
nixpkgs-e91d400dff8518d6da1e6d09da174e8dba0ce978.zip
darwin.adv_cmds: Fix fetchzip call by using https not http (#64546)
-rw-r--r--pkgs/os-specific/darwin/apple-source-releases/adv_cmds/boot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/boot.nix b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/boot.nix
index 318e2728fc2..2a2d4cbe493 100644
--- a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/boot.nix
+++ b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/boot.nix
@@ -11,7 +11,7 @@
 # the more recent adv_cmds release is used for everything else in this package
 
 let recentAdvCmds = fetchzip {
-  url = "http://opensource.apple.com/tarballs/adv_cmds/adv_cmds-158.tar.gz";
+  url = "https://opensource.apple.com/tarballs/adv_cmds/adv_cmds-158.tar.gz";
   sha256 = "0z081kcprzg5jcvqivfnwvvv6wfxzkjg2jc2lagsf8c7j7vgm8nn";
 };