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,25 @@
From e799a7e0a64696e4ef6c088d36e4db09f8323581 Mon Sep 17 00:00:00 2001
From: Maximilian Bosch <maximilian@mbosch.me>
Date: Sun, 19 Jan 2020 22:37:04 +0100
Subject: [PATCH] Fix build for glibc>=2.28
The major/minor macros are defined in <sys/sysmacros.h> now.
---
lib/io.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/io.h b/lib/io.h
index 8703cc8..e3d0d10 100644
--- a/lib/io.h
+++ b/lib/io.h
@@ -33,6 +33,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
+#include <sys/sysmacros.h>
void read_all(int fd, void *buf, size_t len);
--
2.23.1

View file

@ -0,0 +1,34 @@
{ lib, stdenv, fetchurl, pkg-config, autoreconfHook, glib, jansson }:
stdenv.mkDerivation rec {
pname = "xnbd";
version = "0.4.0";
src = fetchurl {
url = "https://bitbucket.org/hirofuchi/xnbd/downloads/xnbd-${version}.tgz";
sha256 = "00wkvsa0yaq4mabczcbfpj6rjvp02yahw8vdrq8hgb3wpm80x913";
};
sourceRoot = "xnbd-${version}/trunk";
patches = [ ./0001-Fix-build-for-glibc-2.28.patch ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ glib jansson ];
# do not build docs, it is slow and it fails on Hydra
prePatch = ''
rm -rf doc
substituteInPlace configure.ac --replace "doc/Makefile" ""
substituteInPlace Makefile.am --replace "lib doc ." "lib ."
'';
meta = {
homepage = "https://bitbucket.org/hirofuchi/xnbd";
description = "Yet another NBD (Network Block Device) server program";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.volth ];
platforms = lib.platforms.linux;
};
}