depot/third_party/nixpkgs/pkgs/development/libraries/speexdsp/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

36 lines
1,008 B
Nix

{ lib
, stdenv
, fetchurl
, autoreconfHook
, pkg-config
, fftw
, withFftw3 ? (!stdenv.hostPlatform.isMinGW)
}:
stdenv.mkDerivation rec {
pname = "speexdsp";
version = "1.2.1";
src = fetchurl {
url = "https://downloads.xiph.org/releases/speex/${pname}-${version}.tar.gz";
sha256 = "sha256-jHdzQ+SmOZVpxyq8OKlbJNtWiCyD29tsZCSl9K61TT0=";
};
patches = [ ./build-fix.patch ];
postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = lib.optionals withFftw3 [ fftw ];
configureFlags = lib.optionals withFftw3 [ "--with-fft=gpl-fftw3" ]
++ lib.optional stdenv.isAarch64 "--disable-neon";
meta = with lib; {
homepage = "https://www.speex.org/";
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
license = licenses.bsd3;
platforms = platforms.unix ++ platforms.windows;
};
}