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,34 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, autoconf-archive }:
stdenv.mkDerivation rec {
pname = "libxls";
version = "1.6.2";
src = fetchFromGitHub {
owner = "libxls";
repo = pname;
rev = "v${version}";
sha256 = "sha256-vjmYByk+IDBon8xGR1+oNaEQTiJK+IVpDXsG1IyVNoY=";
};
patches = [
# Fix cross-compilation
(fetchpatch {
url = "https://github.com/libxls/libxls/commit/007e63c1f5e19bc73292f267c85d7dd14e9ecb38.patch";
sha256 = "sha256-PjPHuXth4Yaq9nVfk5MYJMRo5B0R6YA1KEqgwfjF3PM=";
})
];
nativeBuildInputs = [ autoreconfHook autoconf-archive ];
enableParallelBuilding = true;
meta = with lib; {
description = "Extract Cell Data From Excel xls files";
homepage = "https://github.com/libxls/libxls";
license = licenses.bsd2;
maintainers = with maintainers; [ abbradar ];
mainProgram = "xls2csv";
platforms = platforms.unix;
};
}