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,28 @@
{ stdenv, lib, fetchFromGitHub, chruby }:
stdenv.mkDerivation rec {
pname = "chruby-fish";
version = "0.8.2";
src = fetchFromGitHub {
owner = "JeanMertz";
repo = "chruby-fish";
rev = "v${version}";
sha256 = "15q0ywsn9pcypbpvlq0wb41x4igxm9bsvhg9a05dqw1n437qjhyb";
};
postInstall = ''
sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/auto.fish
sed -i -e '1iset CHRUBY_ROOT ${chruby}' $out/share/chruby/chruby.fish
'';
installFlags = [ "PREFIX=$(out)" ];
meta = {
description = "Thin wrapper around chruby to make it work with the Fish shell";
homepage = "https://github.com/JeanMertz/chruby-fish";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.cohei ];
};
}