buildtorrent: update URL to HTTPS

This commit is contained in:
AndersonTorres 2020-10-25 21:41:53 -03:00
parent 852d2a3af9
commit 507a352361

View file

@ -1,20 +1,18 @@
{ stdenv, fetchurl }:
let version = "0.8"; in
stdenv.mkDerivation rec {
pname = "buildtorrent";
inherit version;
version = "0.8";
src = fetchurl {
url = "https://mathr.co.uk/blog/code/${pname}-${version}.tar.gz";
sha256 = "e8e27647bdb38873ac570d46c1a9689a92b01bb67f59089d1cdd08784f7052d0";
sha256 = "sha256-6OJ2R72ziHOsVw1GwalompKwG7Z/WQidHN0IeE9wUtA=";
};
meta = {
meta = with stdenv.lib; {
description = "A simple commandline torrent creator";
homepage = "http://mathr.co.uk/blog/torrent.html";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
homepage = "https://mathr.co.uk/blog/torrent.html";
license = licenses.gpl3Plus;
platforms = platforms.all;
};
}