nixpkgs/pkgs/applications/audio/tetraproc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper
2021-03-14 16:03:47 +00:00
, expat, fftwFloat, fontconfig, freetype, libjack2, jack2, libclthreads, libclxclient
, libsndfile, libxcb, xorg
}:
stdenv.mkDerivation rec {
pname = "tetraproc";
2023-11-01 03:52:23 +00:00
version = "0.9.2";
2015-05-28 06:12:45 +00:00
src = fetchurl {
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
2023-11-01 03:52:23 +00:00
sha256 = "sha256-kRak33RuYusG6U5FOf9b9vOJUjNK3zqoLL0V/bWBJqs=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
expat libjack2 libclthreads libclxclient fftwFloat fontconfig libsndfile freetype
libxcb xorg.libX11 xorg.libXau xorg.libXdmcp xorg.libXft xorg.libXrender
];
2015-05-28 06:12:45 +00:00
makeFlags = [
"PREFIX=$(out)"
"SUFFIX=''"
];
2015-05-28 06:12:45 +00:00
preConfigure = ''
cd ./source/
'';
postInstall = ''
2023-05-30 23:58:48 +00:00
# Make sure Jack is available in $PATH for tetraproc
2021-03-14 16:03:47 +00:00
wrapProgram $out/bin/tetraproc --prefix PATH : "${jack2}/bin"
'';
meta = with lib; {
description = "Converts the A-format signals from a tetrahedral Ambisonic microphone into B-format signals ready for recording";
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/";
2015-05-28 06:12:45 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ magnetophon ];
platforms = platforms.linux;
};
}