speexdsp: fix integer types not being included
Description in comments of https://aur.archlinux.org/packages/retroshare/ I'm not sure why their conditionals don't work, but this fix should be safe. /cc maintainer @wkennington.
This commit is contained in:
parent
fa89e79391
commit
026aa123a4
@ -2,14 +2,15 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "speexdsp-1.2rc3";
|
name = "speexdsp-1.2rc3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
|
url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
|
||||||
sha256 = "1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja";
|
sha256 = "1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./build-fix.patch ];
|
patches = [ ./build-fix.patch ];
|
||||||
|
postPatch = "sed '3i#include <stdint.h>' -i ./include/speex/speexdsp_config_types.h.in";
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ fftw ];
|
buildInputs = [ fftw ];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user