mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
30 lines
872 B
Nix
30 lines
872 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig, fftw }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "speexdsp-1.2rc3";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
|
|
sha256 = "1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja";
|
|
};
|
|
|
|
patches = [ ./build-fix.patch ];
|
|
postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ fftw ];
|
|
|
|
configureFlags = [
|
|
"--with-fft=gpl-fftw3"
|
|
] ++ stdenv.lib.optional stdenv.isAarch64 "--disable-neon";
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|