tetraproc: add missing Xorg libs & ensure Jack is in PATH
This commit is contained in:
parent
dfbef0d770
commit
0ff8e28b83
@ -1,4 +1,7 @@
|
|||||||
{ stdenv, fetchurl, fftwFloat, freetype, jack2, libclthreads, libclxclient, libsndfile, x11 }:
|
{ stdenv, fetchurl, makeWrapper
|
||||||
|
, expat, fftwFloat, fontconfig, freetype, jack2, libclthreads, libclxclient
|
||||||
|
, libsndfile, libxcb, xlibs
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "tetraproc-${version}";
|
name = "tetraproc-${version}";
|
||||||
@ -9,7 +12,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "17y3vbm5f6h5cmh3yfxjgqz4xhfwpkla3lqfspnbm4ndlzmfpykv";
|
sha256 = "17y3vbm5f6h5cmh3yfxjgqz4xhfwpkla3lqfspnbm4ndlzmfpykv";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ jack2 libclthreads libclxclient fftwFloat libsndfile freetype x11 ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
expat jack2 libclthreads libclxclient fftwFloat fontconfig libsndfile freetype
|
||||||
|
libxcb xlibs.libX11 xlibs.libXau xlibs.libXdmcp xlibs.libXft xlibs.libXrender
|
||||||
|
];
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"PREFIX=$(out)"
|
"PREFIX=$(out)"
|
||||||
@ -20,6 +28,11 @@ stdenv.mkDerivation rec {
|
|||||||
cd ./source/
|
cd ./source/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# Make sure Jack is avalable in $PATH for tetraproc
|
||||||
|
wrapProgram $out/bin/tetraproc --prefix PATH : "${jack2}/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Converts the A-format signals from a tetrahedral Ambisonic microphone into B-format signals ready for recording";
|
description = "Converts the A-format signals from a tetrahedral Ambisonic microphone into B-format signals ready for recording";
|
||||||
homepage = http://kokkinizita.linuxaudio.org/linuxaudio/;
|
homepage = http://kokkinizita.linuxaudio.org/linuxaudio/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user