2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, cmake, pkg-config, qt4, taglib, chromaprint, ffmpeg }:
|
2013-08-14 17:36:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "acoustid-fingerprinter";
|
2013-08-14 17:36:23 +01:00
|
|
|
version = "0.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-08-13 12:43:16 +01:00
|
|
|
url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/downloads/"
|
2019-08-15 13:41:18 +01:00
|
|
|
+ "${pname}-${version}.tar.gz";
|
2013-08-14 17:36:23 +01:00
|
|
|
sha256 = "0ckglwy95qgqvl2l6yd8ilwpd6qs7yzmj8g7lnxb50d12115s5n0";
|
|
|
|
};
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ qt4 taglib chromaprint ffmpeg ];
|
2013-08-14 17:36:23 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
cmakeFlags = [ "-DTAGLIB_MIN_VERSION=${lib.getVersion taglib}" ];
|
2016-03-17 10:15:53 +00:00
|
|
|
|
2018-11-11 01:18:29 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/commits/632e87969c3a5562a5d4842b03613267ba6236b2/raw";
|
|
|
|
sha256 = "15hm9knrpqn3yqrwyjz4zh2aypwbcycd0c5svrsy1fb2h2rh05jk";
|
|
|
|
})
|
|
|
|
./ffmpeg.patch
|
|
|
|
];
|
2017-01-22 18:56:55 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://acoustid.org/fingerprinter";
|
2013-08-14 17:36:23 +01:00
|
|
|
description = "Audio fingerprinting tool using chromaprint";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2016-03-17 10:15:53 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2013-08-14 17:36:23 +01:00
|
|
|
};
|
|
|
|
}
|