uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
30
pkgs/development/libraries/speexdsp/default.nix
Normal file
30
pkgs/development/libraries/speexdsp/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, fftw }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "speexdsp";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://downloads.xiph.org/releases/speex/${pname}-${version}.tar.gz";
|
||||
sha256 = "0wa7sqpk3x61zz99m7lwkgr6yv62ml6lfgs5xja65vlvdzy44838";
|
||||
};
|
||||
|
||||
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 = [ fftw ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-fft=gpl-fftw3"
|
||||
] ++ lib.optional stdenv.isAarch64 "--disable-neon";
|
||||
|
||||
meta = with 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue