Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / aubio / default.nix
blob89f81e26de40761baafb956b44ffabddcd9d339f
1 { lib, stdenv, fetchurl, alsa-lib, fftw, libjack2, libsamplerate
2 , libsndfile, pkg-config, python3, wafHook
3 }:
5 stdenv.mkDerivation rec {
6   pname = "aubio";
7   version = "0.4.9";
9   src = fetchurl {
10     url = "https://aubio.org/pub/aubio-${version}.tar.bz2";
11     sha256 = "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl";
12   };
14   nativeBuildInputs = [ pkg-config python3 wafHook ];
15   buildInputs = [ alsa-lib fftw libjack2 libsamplerate libsndfile ];
17   strictDeps = true;
18   dontAddWafCrossFlags = true;
19   wafFlags = lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--disable-tests";
21   postPatch = ''
22     # U was removed in python 3.11 because it had no effect
23     substituteInPlace waflib/*.py \
24       --replace "m='rU" "m='r" \
25       --replace "'rU'" "'r'"
26   '';
28   meta = with lib; {
29     description = "Library for audio labelling";
30     homepage = "https://aubio.org/";
31     license = licenses.gpl2;
32     maintainers = with maintainers; [ goibhniu marcweber fpletz ];
33     platforms = platforms.linux;
34   };