3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/aubio/default.nix

30 lines
829 B
Nix
Raw Normal View History

{ stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
2017-03-11 14:28:07 +00:00
, libsndfile, pkgconfig, python3
}:
stdenv.mkDerivation rec {
2017-06-20 00:03:01 +01:00
name = "aubio-0.4.5";
src = fetchurl {
2014-02-17 22:43:11 +00:00
url = "http://aubio.org/pub/${name}.tar.bz2";
2017-06-20 00:03:01 +01:00
sha256 = "1xkshac4wdm7r5sc04c38d6lmvv5sk4qrb5r1yy0xgsgdx781hkh";
};
2017-03-11 14:28:07 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile python3 ];
2017-03-11 14:28:07 +00:00
configurePhase = "${python3.interpreter} waf configure --prefix=$out";
2017-03-11 14:28:07 +00:00
buildPhase = "${python3.interpreter} waf";
2017-03-11 14:28:07 +00:00
installPhase = "${python3.interpreter} waf install";
2016-10-27 23:53:12 +01:00
meta = with stdenv.lib; {
description = "Library for audio labelling";
2017-06-20 00:03:01 +01:00
homepage = https://aubio.org/;
license = licenses.gpl2;
2016-10-27 23:53:12 +01:00
maintainers = with maintainers; [ goibhniu marcweber fpletz ];
platforms = platforms.linux;
};
}