summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2018-12-16 19:11:16 +0100
committerRobin Gloster <mail@glob.in>2018-12-16 19:49:14 +0100
commit5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442 (patch)
tree58fb07a4eafcbc015b17ac68f6112034c4964a87 /pkgs/tools
parentf47d3a0e608dd92894850fd79a35396cb73be2bf (diff)
downloadnixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.tar
nixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.tar.gz
nixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.tar.bz2
nixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.tar.lz
nixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.tar.xz
nixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.tar.zst
nixpkgs-5b997fb126e7e9513ad7cc2ab1a43f06dd3ea442.zip
stress-ng: use https for fetching and homepage
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/stress-ng/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix
index 557f2b7092e..0c5a088daf9 100644
--- a/pkgs/tools/system/stress-ng/default.nix
+++ b/pkgs/tools/system/stress-ng/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
   version = "0.09.49";
 
   src = fetchurl {
-    url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.xz";
+    url = "https://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.xz";
     sha256 = "1ll2i7vgnwpfhvq963m2aqwffkrmjggnscpmwn8qbdh0a82lmq2x";
   };
 
@@ -42,8 +42,8 @@ stdenv.mkDerivation rec {
       hardware issues such as thermal overruns as well as operating system
       bugs that only occur when a system is being thrashed hard.
     '';
-    homepage = http://kernel.ubuntu.com/~cking/stress-ng/;
-    downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
+    homepage = https://kernel.ubuntu.com/~cking/stress-ng/;
+    downloadPage = https://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ c0bw3b ];
     platforms = platforms.linux; # TODO: fix https://github.com/NixOS/nixpkgs/pull/50506#issuecomment-439635963