summary refs log tree commit diff
path: root/pkgs/tools/networking/filegive/default.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-12 01:19:38 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-12 01:19:38 +0200
commit4df95aac78bd845b7c05ae715dc1556e539201cc (patch)
tree4bd2f0e312f785cf7717c960aa852be1df8d787d /pkgs/tools/networking/filegive/default.nix
parent411a5246c0d8e2c1399b4ea6b50413ce81b5fdbd (diff)
downloadnixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.tar
nixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.tar.gz
nixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.tar.bz2
nixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.tar.lz
nixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.tar.xz
nixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.tar.zst
nixpkgs-4df95aac78bd845b7c05ae715dc1556e539201cc.zip
filegive: use https
Diffstat (limited to 'pkgs/tools/networking/filegive/default.nix')
-rw-r--r--pkgs/tools/networking/filegive/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/filegive/default.nix b/pkgs/tools/networking/filegive/default.nix
index 60dbd1c323b..681bda5b4e1 100644
--- a/pkgs/tools/networking/filegive/default.nix
+++ b/pkgs/tools/networking/filegive/default.nix
@@ -5,7 +5,7 @@ buildGoPackage rec {
   version = "0.7.4";
 
   src = fetchurl {
-    url = "http://viric.name/soft/filegive/filegive-${version}.tar.gz";
+    url = "https://viric.name/soft/filegive/filegive-${version}.tar.gz";
     sha256 = "1z3vyqfdp271qa5ah0i6jmn9gh3gb296wcm33sd2zfjqapyh12hy";
   };
 
@@ -14,7 +14,7 @@ buildGoPackage rec {
   goPackagePath = "viric.name/soft/filegive";
 
   meta = with lib; {
-    homepage = "http://viric.name/cgi-bin/filegive";
+    homepage = "https://viric.name/cgi-bin/filegive";
     description = "Easy p2p file sending program";
     license = licenses.agpl3Plus;
     maintainers = [ maintainers.viric ];