2010-09-14 16:29:25 +02:00
|
|
|
{ stdenv, fetchurl, expat, curl, fftw }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libofa-0.9.3";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ expat curl fftw ];
|
|
|
|
|
2011-11-06 15:26:55 +01:00
|
|
|
patches = [ ./libofa-0.9.3-gcc-4.patch ./libofa-0.9.3-gcc-4.3.patch ./gcc-4.x.patch ./curl-types.patch ];
|
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
|
|
|
|
|
|
|
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
|
|
|
}
|