nixpkgs/pkgs/applications/audio/puredata/default.nix
Bjørn Forsman 62d0a320b3 Revert "Remove obsolete jackaudio version 1."
This reverts commit bdb77826d9.

Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.

Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
2014-07-31 12:52:29 +02:00

41 lines
960 B
Nix

{ stdenv, fetchurl, autoreconfHook, gettext, makeWrapper
, alsaLib, jack2, tk
}:
stdenv.mkDerivation rec {
name = "puredata-${version}";
version = "0.45-4";
src = fetchurl {
url = "mirror://sourceforge/pure-data/pd-${version}.src.tar.gz";
sha256 = "1ls2ap5yi2zxvmr247621g4jx0hhfds4j5704a050bn2n3l0va2p";
};
patchPhase = ''
rm portaudio/configure.in
'';
nativeBuildInputs = [ autoreconfHook gettext makeWrapper ];
buildInputs = [ alsaLib jack2 ];
configureFlags = ''
--enable-alsa
--enable-jack
--disable-portaudio
'';
postInstall = ''
wrapProgram $out/bin/pd --prefix PATH : ${tk}/bin
'';
meta = with stdenv.lib; {
description = ''A real-time graphical programming environment for
audio, video, and graphical processing'';
homepage = http://puredata.info;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}