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,37 @@
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper
, trash-cli, coreutils, which, getopt }:
stdenvNoCC.mkDerivation rec {
pname = "rmtrash";
version = "1.14";
src = fetchFromGitHub {
owner = "PhrozenByte";
repo = pname;
rev = "v${version}";
sha256 = "0wfb2ykzlsxyqn9krfsis9jxhaxy3pxl71a4f15an1ngfndai694";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
for f in rm{,dir}trash; do
install -D ./$f $out/bin/$f
wrapProgram $out/bin/$f \
--prefix PATH : ${lib.makeBinPath [ trash-cli coreutils which getopt ]}
done
'';
meta = with lib; {
homepage = "https://github.com/PhrozenByte/rmtrash";
description = "trash-put made compatible with GNUs rm and rmdir";
longDescription = ''
Put files (and directories) in trash using the `trash-put` command in a
way that is, otherwise as `trash-put` itself, compatible to GNUs `rm`
and `rmdir`.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peelz ];
platforms = platforms.all;
};
}