2015-05-28 09:12:45 +03:00
|
|
|
{ stdenv, fetchurl, fftwFloat, freetype, jack2, libclthreads, libclxclient, libsndfile, x11 }:
|
2015-05-26 05:17:09 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tetraproc-${version}";
|
|
|
|
version = "0.8.2";
|
2015-05-28 09:12:45 +03:00
|
|
|
|
2015-05-26 05:17:09 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2";
|
|
|
|
sha256 = "17y3vbm5f6h5cmh3yfxjgqz4xhfwpkla3lqfspnbm4ndlzmfpykv";
|
|
|
|
};
|
|
|
|
|
2015-05-28 09:12:45 +03:00
|
|
|
buildInputs = [ jack2 libclthreads libclxclient fftwFloat libsndfile freetype x11 ];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"SUFFIX=''"
|
2015-05-26 05:17:09 +03:00
|
|
|
];
|
|
|
|
|
2015-05-28 09:12:45 +03:00
|
|
|
preConfigure = ''
|
|
|
|
cd ./source/
|
2015-05-26 05:17:09 +03:00
|
|
|
'';
|
|
|
|
|
2015-05-28 09:12:45 +03:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-26 05:17:09 +03:00
|
|
|
description = "Converts the A-format signals from a tetrahedral Ambisonic microphone into B-format signals ready for recording";
|
2015-05-28 09:12:45 +03:00
|
|
|
homepage = http://kokkinizita.linuxaudio.org/linuxaudio/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
2015-05-26 05:17:09 +03:00
|
|
|
};
|
|
|
|
}
|