summary refs log tree commit diff
path: root/pkgs/applications/audio/lastfmsubmitd
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/applications/audio/lastfmsubmitd
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/applications/audio/lastfmsubmitd')
-rw-r--r--pkgs/applications/audio/lastfmsubmitd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/lastfmsubmitd/default.nix b/pkgs/applications/audio/lastfmsubmitd/default.nix
index 01b450ab7dd..d0c3eab6915 100644
--- a/pkgs/applications/audio/lastfmsubmitd/default.nix
+++ b/pkgs/applications/audio/lastfmsubmitd/default.nix
@@ -6,7 +6,7 @@ pythonPackages.buildPythonApplication rec {
   version = "1.0.6";
 
   src = fetchurl {
-    url = "http://www.red-bean.com/decklin/lastfmsubmitd/lastfmsubmitd-${version}.tar.gz";
+    url = "https://www.red-bean.com/decklin/lastfmsubmitd/lastfmsubmitd-${version}.tar.gz";
     sha256 = "c2636d5095a95167366bacd458624d67b046e060244fa54ba2c2e3efb79f9b0e";
   };
 
@@ -15,7 +15,7 @@ pythonPackages.buildPythonApplication rec {
   installCommand = "python setup.py install --prefix=$out";
 
   meta = {
-    homepage = http://www.red-bean.com/decklin/lastfmsubmitd/;
+    homepage = https://www.red-bean.com/decklin/lastfmsubmitd/;
     description = "An last.fm audio scrobbler and daemon";
   };
 }