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,29 @@
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "zsh-z";
version = "unstable-2021-02-15";
src = fetchFromGitHub {
owner = "agkozak";
repo = pname;
rev = "595c883abec4682929ffe05eb2d088dd18e97557";
sha256 = "sha256-HnwUWqzwavh/Qox+siOe5lwTp7PBdiYx+9M0NMNFx00=";
};
strictDeps = true;
dontBuild = true;
installPhase = ''
mkdir -p $out/share/zsh-z
cp _zshz zsh-z.plugin.zsh $out/share/zsh-z
'';
meta = with lib; {
description = "Jump quickly to directories that you have visited frequently in the past, or recently";
homepage = "https://github.com/agkozak/zsh-z";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.evalexpr ];
};
}