PureData: Update to 0.44, add support for JACK and fix wrapper
This commit is contained in:
parent
f8faea23f8
commit
509ea2888a
|
@ -1,24 +1,31 @@
|
||||||
{ stdenv, fetchurl, alsaLib, autoconf, automake, fftw, gettext, glib,
|
{ stdenv, fetchurl, alsaLib, autoconf, automake, fftw, gettext, glib
|
||||||
libX11, libtool, tcl, tk }:
|
, jackaudio, libX11, libtool, makeWrapper, pkgconfig, tcl, tk
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "puredata-${version}";
|
name = "puredata-${version}";
|
||||||
version = "0.43-0";
|
version = "0.44-0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/pure-data/pd-${version}.src.tar.gz";
|
url = "mirror://sourceforge/pure-data/pd-${version}.src.tar.gz";
|
||||||
sha256 = "1qfq7x8vj12kr0cdrnbvmxfhc03flicc6vcc8bz6hwrrakwciyz2";
|
sha256 = "031bvqfnlpfx0y5n0l5rmslziqc6jgmk99x1prgh1rmhjhjdnijw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ alsaLib autoconf automake fftw gettext glib libX11
|
buildInputs = [
|
||||||
libtool tcl tk ];
|
alsaLib autoconf automake fftw gettext glib jackaudio libX11
|
||||||
|
libtool makeWrapper pkgconfig tcl tk
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/pd --prefix PATH : ${tk}/bin
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = ''Real-time graphical programming environment for
|
description = ''A real-time graphical programming environment for
|
||||||
audio, video, and graphical processing'';
|
audio, video, and graphical processing'';
|
||||||
homepage = http://puredata.info;
|
homepage = http://puredata.info;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
Loading…
Reference in New Issue