summary refs log tree commit diff
path: root/pkgs/applications/audio/puredata
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2018-10-02 00:21:04 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-02 00:21:04 +0200
commit94de259013beabc0b642e46d62a780d2ddce5e6c (patch)
tree16a98baef1673d454e4b091f8c5716b633be8d20 /pkgs/applications/audio/puredata
parent483e2a1a6bfe848e74e39bdc7a5f38adb9c9516e (diff)
downloadnixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.tar
nixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.tar.gz
nixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.tar.bz2
nixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.tar.lz
nixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.tar.xz
nixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.tar.zst
nixpkgs-94de259013beabc0b642e46d62a780d2ddce5e6c.zip
puredata: 0.48-2 -> 0.49-0 (#47505)
Diffstat (limited to 'pkgs/applications/audio/puredata')
-rw-r--r--pkgs/applications/audio/puredata/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/audio/puredata/default.nix b/pkgs/applications/audio/puredata/default.nix
index 354b7c4b6c7..6ade9042b53 100644
--- a/pkgs/applications/audio/puredata/default.nix
+++ b/pkgs/applications/audio/puredata/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation  rec {
   name = "puredata-${version}";
-  version = "0.48-2";
+  version = "0.49-0";
 
   src = fetchurl {
     url = "http://msp.ucsd.edu/Software/pd-${version}.src.tar.gz";
-    sha256 = "0p86hncgzkrl437v2wch2fg9iyn6mnrgbn811sh9pwmrjj2f06v8";
+    sha256 = "18rzqbpgnnvyslap7k0ly87aw1bbxkb0rk5agpr423ibs9slxq6j";
   };
 
   nativeBuildInputs = [ autoreconfHook gettext makeWrapper ];
@@ -20,11 +20,9 @@ stdenv.mkDerivation  rec {
     "--enable-jack"
     "--enable-fftw"
     "--disable-portaudio"
+    "--disable-oss"
   ];
 
-  # https://github.com/pure-data/pure-data/issues/188
-  # --disable-oss
-
   postInstall = ''
     wrapProgram $out/bin/pd --prefix PATH : ${tk}/bin
   '';