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 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "networking-ts-cxx";
version = "2019-02-27";
# Used until https://github.com/chriskohlhoff/networking-ts-impl/issues/17 is
# resolved and we can generate in Nix.
src = fetchFromGitHub {
owner = "chriskohlhoff";
repo = "networking-ts-impl";
rev = "c97570e7ceef436581be3c138868a19ad96e025b";
sha256 = "12b5lg989nn1b8v6x9fy3cxsf3hs5hr67bd1mfyh8pjikir7zv6j";
};
installPhase = ''
mkdir -p $out/{include,lib/pkgconfig}
cp -r include $out/
substituteAll ${./networking_ts.pc.in} $out/lib/pkgconfig/networking_ts.pc
'';
meta = with lib; {
description = "Experimental implementation of the C++ Networking Technical Specification";
homepage = "https://github.com/chriskohlhoff/networking-ts-impl";
license = licenses.boost;
maintainers = with maintainers; [ bhipple ];
};
}