summary refs log tree commit diff
path: root/pkgs/applications/audio/puredata/default.nix
blob: d0394b72eddc8ea7cbaf1532025d89b59a8f61e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, fetchurl, autoreconfHook, gettext, makeWrapper
, alsaLib, jackaudio, 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 jackaudio ];

  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 ];
  };
}