summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-11-11 18:08:59 +0300
committerGitHub <noreply@github.com>2023-11-11 18:08:59 +0300
commite792d7fec0cc387cc5da0cb077115280514f8326 (patch)
tree5818bedc97da579fb6f7d0e3dbef70038bf1246f /pkgs/data
parent28ce810d966e980405b7c836170e0717637b2be3 (diff)
parente30f48be948272df2d57237ef955023f937f4421 (diff)
downloadnixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.tar
nixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.tar.gz
nixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.tar.bz2
nixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.tar.lz
nixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.tar.xz
nixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.tar.zst
nixpkgs-e792d7fec0cc387cc5da0cb077115280514f8326.zip
Merge pull request #264442 from anthonyroussel/update-url-redirects
treewide: fix redirected and broken URLs
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/soundfonts/generaluser/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/data/soundfonts/generaluser/default.nix b/pkgs/data/soundfonts/generaluser/default.nix
index 5191199e647..abe1ea4ceac 100644
--- a/pkgs/data/soundfonts/generaluser/default.nix
+++ b/pkgs/data/soundfonts/generaluser/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
 
   # we can't use fetchurl since stdenv does not handle unpacking *.zip's by default.
   src = fetchzip {
-    # Linked on http://www.schristiancollins.com/generaluser.php:
+    # Linked on https://www.schristiancollins.com/generaluser.php:
     url = "https://www.dropbox.com/s/4x27l49kxcwamp5/GeneralUser_GS_${version}.zip";
     sha256 = "sha256-lwUlWubXiVZ8fijKuNF54YQjT0uigjNAbjKaNjmC51s=";
   };
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "a SoundFont bank featuring 259 instrument presets and 11 drum kits";
-    homepage = "http://www.schristiancollins.com/generaluser.php";
+    homepage = "https://www.schristiancollins.com/generaluser.php";
     license = licenses.generaluser;
     platforms = platforms.all;
     maintainers = with maintainers; [ ckie ];