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

26 lines
697 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, alsa-lib, fftw, libjack2, libsamplerate
2021-03-25 09:26:38 +00:00
, libsndfile, pkg-config, python3, wafHook
}:
stdenv.mkDerivation rec {
2019-02-11 21:41:15 +00:00
name = "aubio-0.4.9";
src = fetchurl {
url = "https://aubio.org/pub/${name}.tar.bz2";
2019-02-11 21:41:15 +00:00
sha256 = "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl";
};
2021-03-25 09:26:38 +00:00
nativeBuildInputs = [ pkg-config python3 wafHook ];
buildInputs = [ alsa-lib fftw libjack2 libsamplerate libsndfile ];
2021-03-25 09:26:38 +00:00
strictDeps = true;
meta = with lib; {
description = "Library for audio labelling";
homepage = "https://aubio.org/";
license = licenses.gpl2;
2016-10-27 22:53:12 +00:00
maintainers = with maintainers; [ goibhniu marcweber fpletz ];
platforms = platforms.linux;
};
}