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

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

  src = fetchurl {
    url = "https://aubio.org/pub/${name}.tar.bz2";
    sha256 = "1fjbz1l9axscrb7dl6jv4ifhvmq1g77ihvg0bbwwfg0j3qz4gxyw";
  };

  nativeBuildInputs = [ pkgconfig python wafHook ];
  buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];

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