summary refs log tree commit diff
path: root/pkgs/tools/backup/duplicity
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2018-12-01 18:32:32 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2018-12-02 15:21:04 +0100
commita04a512f343ccdb50068f61954f50ae9ad701460 (patch)
tree4e5678d520725a175d8b943a955354b6976684cd /pkgs/tools/backup/duplicity
parent947be9e99238b959361e0bd49648a8d386408e9d (diff)
downloadnixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.tar
nixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.tar.gz
nixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.tar.bz2
nixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.tar.lz
nixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.tar.xz
nixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.tar.zst
nixpkgs-a04a512f343ccdb50068f61954f50ae9ad701460.zip
Treewide: use HTTPS on NonGNU domains
Diffstat (limited to 'pkgs/tools/backup/duplicity')
-rw-r--r--pkgs/tools/backup/duplicity/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index cbe02a0593e..b5accb3b82b 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -5,7 +5,7 @@ python2Packages.buildPythonApplication rec {
   version = "0.7.18.2";
 
   src = fetchurl {
-    url = "http://code.launchpad.net/duplicity/${stdenv.lib.versions.majorMinor version}-series/${version}/+download/${name}.tar.gz";
+    url = "https://code.launchpad.net/duplicity/${stdenv.lib.versions.majorMinor version}-series/${version}/+download/${name}.tar.gz";
     sha256 = "0j37dgyji36hvb5dbzlmh5rj83jwhni02yq16g6rd3hj8f7qhdn2";
   };
 
@@ -35,7 +35,7 @@ python2Packages.buildPythonApplication rec {
 
   meta = with stdenv.lib; {
     description = "Encrypted bandwidth-efficient backup using the rsync algorithm";
-    homepage = http://www.nongnu.org/duplicity;
+    homepage = https://www.nongnu.org/duplicity;
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ peti ];
     platforms = platforms.unix;