summary refs log tree commit diff
path: root/pkgs/development/libraries/aubio/default.nix
blob: 1d315d28aeeff514d88cbbd3ea04a4284d29046b (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
{ stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
, libsndfile, pkgconfig, python2
}:

stdenv.mkDerivation rec {
  name = "aubio-0.4.1";

  src = fetchurl {
    url = "http://aubio.org/pub/${name}.tar.bz2";
    sha256 = "15f6nf76y7iyl2kl4ny7ky0zpxfxr8j3902afvd6ydnnkh5dzmr5";
  };

  buildInputs = [
    alsaLib fftw libjack2 libsamplerate libsndfile pkgconfig python2
  ];

  configurePhase = "${python2.interpreter} waf configure --prefix=$out";

  buildPhase = "${python2.interpreter} waf";

  installPhase = "${python2.interpreter} waf install";

  meta = with stdenv.lib; { 
    description = "Library for audio labelling";
    homepage = http://aubio.org/;
    license = licenses.gpl2;
    maintainers = [ maintainers.goibhniu maintainers.marcweber ];
    platforms = platforms.linux;
  };
}