chromaprint: 1.3.2 -> 1.4.3

Changed upstream URL to GitHub. The latest release is not on BitBucket
and the web site points to GitHub.
This commit is contained in:
Davíð Steinn Geirsson 2019-10-07 17:59:09 +00:00
parent 7c3e8cda89
commit 128fc2ac19

View File

@ -2,18 +2,18 @@
stdenv.mkDerivation rec {
pname = "chromaprint";
version = "1.3.2";
version = "1.4.3";
src = fetchurl {
url = "https://bitbucket.org/acoustid/chromaprint/downloads/${pname}-${version}.tar.gz";
sha256 = "0lln8dh33gslb9cbmd1hcv33pr6jxdwipd8m8gbsyhksiq6r1by3";
url = "https://github.com/acoustid/chromaprint/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "10kz8lncal4s2rp2rqpgc6xyjp0jzcrihgkx7chf127vfs5n067a";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ffmpeg ];
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" "-DBUILD_TOOLS=ON" ];
meta = with stdenv.lib; {
homepage = https://acoustid.org/chromaprint;