mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
chromaprint: Add new package in version 0.7.
This is the core component of the AcoustID project and is the library for extracting/querying of audio fingerprints. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
213ff4d38c
commit
d5487fc684
19
pkgs/development/libraries/chromaprint/default.nix
Normal file
19
pkgs/development/libraries/chromaprint/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl, cmake, fftw, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chromaprint-${version}";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz";
|
||||
sha256 = "00amjzrr4230v3014141hg8k379zpba56xsm572ab49w8kyw6ljf";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake fftw boost ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://acoustid.org/chromaprint";
|
||||
description = "AcoustID audio fingerprinting library";
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
};
|
||||
}
|
@ -3814,6 +3814,8 @@ let
|
||||
|
||||
chmlib = callPackage ../development/libraries/chmlib { };
|
||||
|
||||
chromaprint = callPackage ../development/libraries/chromaprint { };
|
||||
|
||||
cil = callPackage ../development/libraries/cil { };
|
||||
|
||||
cilaterm = callPackage ../development/libraries/cil-aterm {
|
||||
|
Loading…
Reference in New Issue
Block a user