mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
c1f1d8634b
This reverts commit ca54d50704
.
26 lines
672 B
Nix
26 lines
672 B
Nix
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "chromaprint-${version}";
|
|
version = "1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
|
|
sha256 = "0lln8dh33gslb9cbmd1hcv33pr6jxdwipd8m8gbsyhksiq6r1by3";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ boost ffmpeg ];
|
|
|
|
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://acoustid.org/chromaprint;
|
|
description = "AcoustID audio fingerprinting library";
|
|
maintainers = with maintainers; [ ehmry ];
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|