acoustid-fingerprinter: use https to fetch package

This commit is contained in:
Jean-Pierre PRUNARET 2017-08-13 13:43:16 +02:00 committed by Emery Hemingway
parent 4ce76d9e1a
commit 3fde711146

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "0.6";
src = fetchurl {
url = "http://bitbucket.org/acoustid/acoustid-fingerprinter/downloads/"
url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/downloads/"
+ "${name}.tar.gz";
sha256 = "0ckglwy95qgqvl2l6yd8ilwpd6qs7yzmj8g7lnxb50d12115s5n0";
};
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
}) ];
meta = with stdenv.lib; {
homepage = http://acoustid.org/fingerprinter;
homepage = https://acoustid.org/fingerprinter;
description = "Audio fingerprinting tool using chromaprint";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with maintainers; [ ehmry ];