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 @@
{ stdenv, lib, fetchurl, libpcap }:
stdenv.mkDerivation rec {
pname = "ucarp";
version = "1.5.2";
src = fetchurl {
url = "https://download.pureftpd.org/pub/ucarp/ucarp-${version}.tar.bz2";
sha256 = "0qidz5sr55nxlmnl8kcbjsrff2j97b44h9l1dmhvvjl46iji7q7j";
};
buildInputs = [ libpcap ];
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: daemonize.o:/build/ucarp-1.5.2/src/ip_carp.h:73: multiple definition of
# `__packed'; ucarp.o:/build/ucarp-1.5.2/src/ip_carp.h:73: first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
meta = with lib; {
description = "Userspace implementation of CARP";
longDescription = ''
UCARP allows a couple of hosts to share common virtual IP addresses in
order to provide automatic failover. It is a portable userland
implementation of the secure and patent-free Common Address Redundancy
Protocol (CARP, OpenBSD's alternative to the patents-bloated VRRP).
Warning: This package has not received any upstream updates for a long
time and can be considered as unmaintained.
'';
license = with licenses; [ isc bsdOriginal bsd2 gpl2Plus ];
maintainers = with maintainers; [ oxzi ];
};
}