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,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kapowbang";
version = "0.7.0";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "BBVA";
repo = "kapow";
rev = "v${version}";
sha256 = "sha256-0ftdc3ol1g0WnZgicXl46Xpph4cUYk/G/eeu+9JnPyA=";
};
vendorSha256 = "sha256-41Jk3aTe4EA5dwkriEo48QNJg2k3T/R/8i8XWcURcG8=";
doCheck = false;
meta = with lib; {
homepage = "https://github.com/BBVA/kapow";
description = "Expose command-line tools over HTTP";
license = licenses.asl20;
maintainers = with maintainers; [ nilp0inter ];
mainProgram = "kapow";
};
}