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 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "snow";
version = "20130616";
src = fetchurl {
url = "https://web.archive.org/web/20200304125913if_/http://darkside.com.au/snow/snow-${version}.tar.gz";
sha256 = "0r9q45y55z4i0askkxmxrx0jr1620ypd870vz0hx2a6n9skimdy0";
};
makeFlags = [ "CFLAGS=-O2" ];
installPhase = ''
install -Dm755 snow -t $out/bin
'';
meta = with lib; {
description = "Conceal messages in ASCII text by appending whitespace to the end of lines";
homepage = "http://www.darkside.com.au/snow/";
license = licenses.asl20;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}