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,32 @@
{ lib, stdenv, fetchgit, libgit2 }:
stdenv.mkDerivation rec {
pname = "l2md";
version = "unstable-2021-10-27";
src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/dborkman/l2md.git";
rev = "9db252bc1716ebaf0abd3a47a59ea78e4e6253d6";
sha256 = "sha256-H/leDUwQM55akyXsmTnI2YsnG4i1KQtf4bBt1fizy8E=";
};
buildInputs = [ libgit2 ];
installPhase = ''
mkdir -p $out/bin
cp l2md $out/bin
'';
meta = with lib; {
description = "Convert public-inbox archives to maildir messages";
longDescription = ''
Quick and dirty hack to import lore.kernel.org list archives via git,
to export them in maildir format or through a pipe, and to keep them
periodically synced.
'';
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/dborkman/l2md.git";
license = licenses.gpl2Only;
maintainers = with maintainers; [ yoctocell ];
platforms = platforms.unix;
};
}