mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #7230 from codyopel/chromaprint
chromaprint: 1.1 -> 1.2
This commit is contained in:
commit
20e8e71c96
1 changed files with 6 additions and 6 deletions
|
@ -1,20 +1,20 @@
|
||||||
{ stdenv, fetchurl, cmake, ffmpeg, boost }:
|
{ stdenv, fetchurl, cmake, boost, ffmpeg }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "chromaprint-${version}";
|
name = "chromaprint-${version}";
|
||||||
version = "1.1";
|
version = "1.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
|
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
|
||||||
sha256 = "04nd8xmy4kgnpfffj6hw893f80bwhp43i01zpmrinn3497mdf53b";
|
sha256 = "06h36223r4bwcazp42faqs9w9g49wvspivd3z3309b12ld4qjaw2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake ffmpeg boost ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ boost ffmpeg ];
|
||||||
|
|
||||||
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
|
cmakeFlags = [ "-DBUILD_EXAMPLES=ON" ];
|
||||||
|
|
||||||
postInstall = "installBin examples/fpcalc";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://acoustid.org/chromaprint";
|
homepage = "http://acoustid.org/chromaprint";
|
||||||
description = "AcoustID audio fingerprinting library";
|
description = "AcoustID audio fingerprinting library";
|
||||||
|
|
Loading…
Reference in a new issue