about summary refs log tree commit diff
path: root/pkgs/applications/audio/traverso/default.nix
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2020-03-20 13:36:23 +0100
committerPatrick Hilhorst <git@hilhorst.be>2020-03-20 13:36:23 +0100
commit9fc5e7e473874762fdb1b49d17dcf703d48352c3 (patch)
tree93932db70d464e3cf3bb36460715dda5fd360b24 /pkgs/applications/audio/traverso/default.nix
parentecce3a7bc9a35415b82169630d352abddf6bcdd2 (diff)
downloadnixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.tar
nixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.tar.gz
nixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.tar.bz2
nixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.tar.lz
nixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.tar.xz
nixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.tar.zst
nixlib-9fc5e7e473874762fdb1b49d17dcf703d48352c3.zip
treewide: fix redirected urls (again)
Ran the same script as #78265.
Additionally, manually replaced `http://goodies.xfce.org`
with https.
Diffstat (limited to 'pkgs/applications/audio/traverso/default.nix')
-rw-r--r--pkgs/applications/audio/traverso/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/traverso/default.nix b/pkgs/applications/audio/traverso/default.nix
index 9188003ce66d..bbc5b4d4fd77 100644
--- a/pkgs/applications/audio/traverso/default.nix
+++ b/pkgs/applications/audio/traverso/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation {
   version = "0.49.6";
 
   src = fetchurl {
-    url = "http://traverso-daw.org/traverso-0.49.6.tar.gz";
+    url = "https://traverso-daw.org/traverso-0.49.6.tar.gz";
     sha256 = "12f7x8kw4fw1j0xkwjrp54cy4cv1ql0zwz2ba5arclk4pf6bhl7q";
   };
 
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "Cross-platform multitrack audio recording and audio editing suite";
-    homepage = http://traverso-daw.org/;
+    homepage = https://traverso-daw.org/;
     license = with licenses; [ gpl2Plus lgpl21Plus ];
     platforms = platforms.all;
     maintainers = with maintainers; [ coconnor ];