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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation (rec {
pname = "rnnoise";
version = "2021-01-22";
src = fetchFromGitHub {
owner = "xiph";
repo = "rnnoise";
rev = "1cbdbcf1283499bbb2230a6b0f126eb9b236defd";
sha256 = "1y0rzgmvy8bf9a431garpm2w177s6ajgf79y5ymw4yb0pik57rwb";
};
nativeBuildInputs = [ autoreconfHook ];
postInstall = ''
install -Dt $out/bin examples/.libs/rnnoise_demo
'';
meta = with lib; {
description = "Recurrent neural network for audio noise reduction";
homepage = "https://people.xiph.org/~jm/demo/rnnoise/";
license = licenses.bsd3;
maintainers = [ maintainers.nh2 ];
mainProgram = "rnnoise_demo";
platforms = platforms.all;
};
})