summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/6
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2018-12-01 19:22:13 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2018-12-02 15:51:59 +0100
commit0498ccd076e0c11b052dc0246033a35f2d51f983 (patch)
treed184dd3915a1de9826a2587463dbdcc431d53ae3 /pkgs/development/compilers/gcc/6
parent93e511c31927013e95d485d2eae7ebf08c40d009 (diff)
downloadnixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.tar
nixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.tar.gz
nixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.tar.bz2
nixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.tar.lz
nixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.tar.xz
nixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.tar.zst
nixpkgs-0498ccd076e0c11b052dc0246033a35f2d51f983.zip
Treewide: use HTTPS on GNU domains
HTTP -> HTTPS for :
- http://gnu.org/
- http://www.gnu.org/
- http://elpa.gnu.org/
- http://lists.gnu.org/
- http://gcc.gnu.org/
- http://ftp.gnu.org/ (except in fetchurl mirrors)
- http://bugs.gnu.org/
Diffstat (limited to 'pkgs/development/compilers/gcc/6')
-rw-r--r--pkgs/development/compilers/gcc/6/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix
index ff48e485a9a..99c79a99dce 100644
--- a/pkgs/development/compilers/gcc/6/default.nix
+++ b/pkgs/development/compilers/gcc/6/default.nix
@@ -355,7 +355,7 @@ stdenv.mkDerivation ({
     then "install-strip"
     else "install";
 
-  # http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
+  # https://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
   ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
 
   # Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
@@ -416,7 +416,7 @@ stdenv.mkDerivation ({
   inherit (stdenv) is64bit;
 
   meta = {
-    homepage = http://gcc.gnu.org/;
+    homepage = https://gcc.gnu.org/;
     license = stdenv.lib.licenses.gpl3Plus;  # runtime support libraries are typically LGPLv3+
     description = "GNU Compiler Collection, version ${version}"
       + (if stripped then "" else " (with debugging info)");