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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
892 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, fftw }:
2015-04-25 23:04:27 +01:00
stdenv.mkDerivation rec {
2021-06-20 15:15:21 +01:00
pname = "speexdsp";
version = "1.2.0";
2015-04-25 23:04:27 +01:00
src = fetchurl {
2021-06-20 15:15:21 +01:00
url = "https://downloads.xiph.org/releases/speex/${pname}-${version}.tar.gz";
sha256 = "0wa7sqpk3x61zz99m7lwkgr6yv62ml6lfgs5xja65vlvdzy44838";
2015-04-25 23:04:27 +01:00
};
patches = [ ./build-fix.patch ];
postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
outputs = [ "out" "dev" "doc" ];
2015-10-06 15:56:11 +01:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2015-04-25 23:04:27 +01:00
buildInputs = [ fftw ];
configureFlags = [
"--with-fft=gpl-fftw3"
] ++ lib.optional stdenv.isAarch64 "--disable-neon";
2015-04-25 23:04:27 +01:00
meta = with lib; {
homepage = "https://www.speex.org/";
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
2015-04-25 23:04:27 +01:00
license = licenses.bsd3;
platforms = platforms.unix;
};
}