Treewide: use https for repo.or.cz

This commit is contained in:
c0bw3b
2018-11-24 19:56:51 +01:00
parent 56cad36f75
commit 88ce525e85
6 changed files with 11 additions and 11 deletions
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
patches = let
fp = name: sha256:
fetchpatch {
url = "http://sources.debian.net/data/main/libt/libtar/1.2.20-4/debian/patches/${name}.patch";
url = "https://sources.debian.net/data/main/libt/libtar/1.2.20-4/debian/patches/${name}.patch";
inherit sha256;
};
in [
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "C library for manipulating POSIX tar files";
homepage = http://repo.or.cz/libtar;
homepage = https://repo.or.cz/libtar;
license = licenses.bsd3;
platforms = with platforms; linux ++ darwin;
maintainers = [ maintainers.bjornfor ];