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

42 lines
1,012 B
Nix
Raw Normal View History

2014-01-13 13:05:58 +00:00
{ stdenv, fetchurl, autoreconfHook, gettext, makeWrapper
2017-12-07 12:43:06 +00:00
, alsaLib, libjack2, tk, fftw
}:
stdenv.mkDerivation rec {
name = "puredata-${version}";
2017-12-07 12:43:06 +00:00
version = "0.48-0";
src = fetchurl {
url = "http://msp.ucsd.edu/Software/pd-${version}.src.tar.gz";
2017-12-07 12:43:06 +00:00
sha256 = "0wy9kl2v00fl27x4mfzhbca415hpaisp6ls8a6mkl01qbw20krny";
};
2014-01-13 13:05:58 +00:00
nativeBuildInputs = [ autoreconfHook gettext makeWrapper ];
2017-12-07 12:43:06 +00:00
buildInputs = [ alsaLib libjack2 fftw ];
2014-01-13 13:05:58 +00:00
configureFlags = ''
--enable-alsa
--enable-jack
2017-12-07 12:43:06 +00:00
--enable-fftw
2014-01-13 13:05:58 +00:00
--disable-portaudio
2017-12-07 12:43:06 +00:00
'';
2017-12-07 12:43:06 +00:00
# https://github.com/pure-data/pure-data/issues/188
# --disable-oss
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 ];
};
}