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,31 @@
{ lib, stdenv, fetchFromGitHub
, autoreconfHook
, pkg-config
, snappy
}:
stdenv.mkDerivation rec {
pname = "snzip";
version = "1.0.4";
src = fetchFromGitHub {
owner = "kubo";
repo = "snzip";
rev = version;
sha256 = "1v8li1zv9f2g31iyi9y9zx42rjvwkaw221g60pmkbv53y667i325";
};
buildInputs = [ snappy ];
# We don't use a release tarball so we don't have a `./configure` script to
# run. That's why we generate it.
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
description = "A compression/decompression tool based on snappy";
homepage = "https://github.com/kubo/snzip";
maintainers = with maintainers; [ doronbehar ];
license = licenses.bsd2;
platforms = platforms.linux;
};
}