nixpkgs/pkgs/development/libraries/aubio/default.nix

24 lines
669 B
Nix
Raw Normal View History

{ stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
, libsndfile, pkgconfig, python, wafHook
}:
stdenv.mkDerivation rec {
2018-12-17 23:04:31 +00:00
name = "aubio-0.4.8";
src = fetchurl {
url = "https://aubio.org/pub/${name}.tar.bz2";
2018-12-17 23:04:31 +00:00
sha256 = "1fjbz1l9axscrb7dl6jv4ifhvmq1g77ihvg0bbwwfg0j3qz4gxyw";
};
nativeBuildInputs = [ pkgconfig python wafHook ];
2017-12-07 12:51:13 +00:00
buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];
2016-10-27 22:53:12 +00:00
meta = with stdenv.lib; {
description = "Library for audio labelling";
2017-06-19 23:03:01 +00:00
homepage = https://aubio.org/;
license = licenses.gpl2;
2016-10-27 22:53:12 +00:00
maintainers = with maintainers; [ goibhniu marcweber fpletz ];
platforms = platforms.linux;
};
}