summary refs log tree commit diff
path: root/pkgs/development/tools/libsigrok
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-24 22:04:25 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-24 22:04:25 -0700
commitb189247ba0b568da59bdb1ab82c5d95b8a85ba24 (patch)
treeff592f0c0a21429b147fbec57061aea5ecc37e46 /pkgs/development/tools/libsigrok
parent3583cf8f4b3e7d7691d3463797f5d98d505ba811 (diff)
downloadnixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.tar
nixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.tar.gz
nixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.tar.bz2
nixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.tar.lz
nixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.tar.xz
nixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.tar.zst
nixpkgs-b189247ba0b568da59bdb1ab82c5d95b8a85ba24.zip
treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
Diffstat (limited to 'pkgs/development/tools/libsigrok')
-rw-r--r--pkgs/development/tools/libsigrok/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/libsigrok/default.nix b/pkgs/development/tools/libsigrok/default.nix
index 1f4c21cb7f9..0271cbee92c 100644
--- a/pkgs/development/tools/libsigrok/default.nix
+++ b/pkgs/development/tools/libsigrok/default.nix
@@ -8,12 +8,12 @@ stdenv.mkDerivation rec {
   name = "libsigrok-${version}";
 
   src = fetchurl {
-    url = "http://sigrok.org/download/source/libsigrok/${name}.tar.gz";
+    url = "https://sigrok.org/download/source/libsigrok/${name}.tar.gz";
     inherit sha256;
   };
 
   firmware = fetchurl {
-    url = "http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz";
+    url = "https://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz";
     sha256 = "1qr02ny97navqxr56xq1a227yzf6h09m8jlvc9bnjl0bsk6887bl";
   };
 
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Core library of the sigrok signal analysis software suite";
-    homepage = http://sigrok.org/;
+    homepage = https://sigrok.org/;
     license = licenses.gpl3Plus;
     platforms = platforms.linux;
     maintainers = [ maintainers.bjornfor ];