summary refs log tree commit diff
path: root/pkgs/development/libraries/aubio/default.nix
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2017-12-07 13:51:13 +0100
committerOrivej Desh <orivej@gmx.fr>2017-12-08 20:25:30 +0000
commitfcca8b4e15e5251acde0c5de1879247879f080e5 (patch)
treea995b9dc35364128001b7e35b2f1c916c47bfe71 /pkgs/development/libraries/aubio/default.nix
parent11d0cccf56979f621a2e513bf3a921b46972615b (diff)
downloadnixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.tar
nixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.tar.gz
nixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.tar.bz2
nixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.tar.lz
nixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.tar.xz
nixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.tar.zst
nixpkgs-fcca8b4e15e5251acde0c5de1879247879f080e5.zip
aubio: 0.4.5 -> 0.4.6
Diffstat (limited to 'pkgs/development/libraries/aubio/default.nix')
-rw-r--r--pkgs/development/libraries/aubio/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/libraries/aubio/default.nix b/pkgs/development/libraries/aubio/default.nix
index e13b102c788..51ae14be404 100644
--- a/pkgs/development/libraries/aubio/default.nix
+++ b/pkgs/development/libraries/aubio/default.nix
@@ -1,23 +1,23 @@
 { stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
-, libsndfile, pkgconfig, python3
+, libsndfile, pkgconfig, python
 }:
 
 stdenv.mkDerivation rec {
-  name = "aubio-0.4.5";
+  name = "aubio-0.4.6";
 
   src = fetchurl {
     url = "http://aubio.org/pub/${name}.tar.bz2";
-    sha256 = "1xkshac4wdm7r5sc04c38d6lmvv5sk4qrb5r1yy0xgsgdx781hkh";
+    sha256 = "1yvwskahx1bf3x2fvi6cwah1ay11iarh79fjlqz8s887y3hkpixx";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile python3 ];
+  nativeBuildInputs = [ pkgconfig python ];
+  buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];
 
-  configurePhase = "${python3.interpreter} waf configure --prefix=$out";
+  configurePhase = "python waf configure --prefix=$out";
 
-  buildPhase = "${python3.interpreter} waf";
+  buildPhase = "python waf";
 
-  installPhase = "${python3.interpreter} waf install";
+  installPhase = "python waf install";
 
   meta = with stdenv.lib; {
     description = "Library for audio labelling";