2010-09-14 16:29:25 +02:00
|
|
|
{ stdenv, fetchurl, expat, curl, fftw }:
|
|
|
|
|
2013-07-01 09:20:05 +02:00
|
|
|
let
|
|
|
|
version = "0.9.3";
|
|
|
|
deb_patch = "5";
|
|
|
|
in
|
2010-09-14 16:29:25 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-07-01 09:20:05 +02:00
|
|
|
name = "libofa-${version}";
|
2010-09-14 16:29:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://musicip-libofa.googlecode.com/files/${name}.tar.gz";
|
|
|
|
sha256 = "184ham039l7lwhfgg0xr2vch2xnw1lwh7sid432mh879adhlc5h2";
|
|
|
|
};
|
2010-09-15 14:57:49 +02:00
|
|
|
|
2013-07-01 09:20:05 +02:00
|
|
|
patches = fetchurl {
|
|
|
|
url = "mirror://debian/pool/main/libo/libofa/libofa_${version}-${deb_patch}.debian.tar.gz";
|
|
|
|
sha256 = "1rfkyz13cm8izm90c1xflp4rvsa24aqs6qpbbbqqcbmvzsj6j9yn";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ expat curl fftw ];
|
|
|
|
|
2010-09-15 14:57:49 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://code.google.com/musicip-libofa/;
|
|
|
|
description = "LibOFA - Library Open Fingerprint Architecture";
|
|
|
|
longDescription = ''
|
|
|
|
LibOFA (Library Open Fingerprint Architecture) is an open-source audio
|
|
|
|
fingerprint created and provided by MusicIP'';
|
|
|
|
};
|
2010-09-14 16:29:25 +02:00
|
|
|
}
|