mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
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.hostPlatform.isAarch64 "--disable-neon";
|
|
|
|
meta = {
|
|
homepage = "https://www.speex.org/";
|
|
description = "Open Source/Free Software patent-free audio compression format designed for speech";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
|
};
|
|
}
|