forked from mirrors/nixpkgs
bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
31 lines
866 B
Nix
31 lines
866 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 = [ "dev" "out" "doc" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ fftw ];
|
|
|
|
configureFlags = [
|
|
"--with-fft=gpl-fftw3"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
hompage = http://www.speex.org/;
|
|
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|