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,23 @@
{ lib, stdenv, fetchurl, pkg-config, libnfc, openssl
, libobjc ? null }:
stdenv.mkDerivation {
pname = "libfreefare";
version = "0.4.0";
src = fetchurl {
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libfreefare/libfreefare-0.4.0.tar.bz2";
sha256 = "0r5wfvwgf35lb1v65wavnwz2wlfyfdims6a9xpslf4lsm4a1v8xz";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libnfc openssl ] ++ lib.optional stdenv.isDarwin libobjc;
meta = with lib; {
description = "The libfreefare project aims to provide a convenient API for MIFARE card manipulations";
license = licenses.lgpl3;
homepage = "https://github.com/nfc-tools/libfreefare";
maintainers = with maintainers; [bobvanderlinden];
platforms = platforms.unix;
};
}