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

39 lines
956 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 {
pname = "puredata";
2020-04-27 10:01:29 +00:00
version = "0.50-2";
src = fetchurl {
url = "http://msp.ucsd.edu/Software/pd-${version}.src.tar.gz";
2020-04-27 10:01:29 +00:00
sha256 = "0dz6r6jy0zfs1xy1xspnrxxks8kddi9c7pxz4vpg2ygwv83ghpg5";
};
2014-01-13 13:05:58 +00:00
nativeBuildInputs = [ autoreconfHook gettext makeWrapper ];
2017-12-07 12:43:06 +00:00
buildInputs = [ alsaLib libjack2 fftw ];
configureFlags = [
"--enable-alsa"
"--enable-jack"
"--enable-fftw"
"--disable-portaudio"
2018-10-01 22:21:04 +00:00
"--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 ];
};
}