summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2018-12-02 16:52:33 +0100
committerGitHub <noreply@github.com>2018-12-02 16:52:33 +0100
commit506d4c7e44be895f36f6f9b7900875ff69e41011 (patch)
tree83b637486abc359561251d3ae64bd72f7d4b2b4b /pkgs/shells
parent0c93294c30b59190e3e239771299edbd7e4d411e (diff)
parent0498ccd076e0c11b052dc0246033a35f2d51f983 (diff)
downloadnixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.tar
nixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.tar.gz
nixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.tar.bz2
nixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.tar.lz
nixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.tar.xz
nixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.tar.zst
nixpkgs-506d4c7e44be895f36f6f9b7900875ff69e41011.zip
Merge pull request #51329 from c0bw3b/cleanup/gnu-https
Favor HTTPS URLs - the GNU edition
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/bash/4.4.nix2
-rw-r--r--pkgs/shells/rush/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/bash/4.4.nix b/pkgs/shells/bash/4.4.nix
index 6f970e1b7ad..e5e33c76d20 100644
--- a/pkgs/shells/bash/4.4.nix
+++ b/pkgs/shells/bash/4.4.nix
@@ -106,7 +106,7 @@ stdenv.mkDerivation rec {
     '';
 
   meta = with stdenv.lib; {
-    homepage = http://www.gnu.org/software/bash/;
+    homepage = https://www.gnu.org/software/bash/;
     description =
       "GNU Bourne-Again Shell, the de facto standard shell on Linux" +
         (if interactive then " (for interactive use)" else "");
diff --git a/pkgs/shells/rush/default.nix b/pkgs/shells/rush/default.nix
index 9a5f7a753d3..3bfafdc46a0 100644
--- a/pkgs/shells/rush/default.nix
+++ b/pkgs/shells/rush/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
          sftp-server or scp, that lack this ability.
       '';
 
-    homepage = http://www.gnu.org/software/rush/;
+    homepage = https://www.gnu.org/software/rush/;
     license = stdenv.lib.licenses.gpl3Plus;
 
     maintainers = [ stdenv.lib.maintainers.bjg ];