2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper
|
2021-03-14 16:03:47 +00:00
|
|
|
, expat, fftwFloat, fontconfig, freetype, libjack2, jack2, libclthreads, libclxclient
|
2015-09-15 09:26:18 +00:00
|
|
|
, libsndfile, libxcb, xorg
|
2015-05-29 12:53:41 +00:00
|
|
|
}:
|
2015-05-26 02:17:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tetraproc";
|
2018-10-07 15:32:38 +00:00
|
|
|
version = "0.8.6";
|
2015-05-28 06:12:45 +00:00
|
|
|
|
2015-05-26 02:17:09 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
|
2018-10-07 15:32:38 +00:00
|
|
|
sha256 = "02155ljfwgvfgq9z258fb4z7jrz7qx022d054fj5gr0v007cv0r7";
|
2015-05-26 02:17:09 +00:00
|
|
|
};
|
|
|
|
|
2015-05-29 12:53:41 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2015-06-27 07:17:52 +00:00
|
|
|
expat libjack2 libclthreads libclxclient fftwFloat fontconfig libsndfile freetype
|
2015-09-15 09:26:18 +00:00
|
|
|
libxcb xorg.libX11 xorg.libXau xorg.libXdmcp xorg.libXft xorg.libXrender
|
2015-05-29 12:53:41 +00:00
|
|
|
];
|
2015-05-28 06:12:45 +00:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"SUFFIX=''"
|
2015-05-26 02:17:09 +00:00
|
|
|
];
|
|
|
|
|
2015-05-28 06:12:45 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cd ./source/
|
2015-05-26 02:17:09 +00:00
|
|
|
'';
|
|
|
|
|
2015-05-29 12:53:41 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Make sure Jack is avalable in $PATH for tetraproc
|
2021-03-14 16:03:47 +00:00
|
|
|
wrapProgram $out/bin/tetraproc --prefix PATH : "${jack2}/bin"
|
2015-05-29 12:53:41 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-26 02:17:09 +00:00
|
|
|
description = "Converts the A-format signals from a tetrahedral Ambisonic microphone into B-format signals ready for recording";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/";
|
2015-05-28 06:12:45 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
2015-05-26 02:17:09 +00:00
|
|
|
};
|
|
|
|
}
|