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, fetchFromGitHub, buildPythonApplication, pyxdg, PyGithub }:
buildPythonApplication rec {
pname = "cligh";
version = "0.3";
doCheck = false; # no tests
src = fetchFromGitHub {
owner = "CMB";
repo = "cligh";
rev = "v${version}";
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
};
propagatedBuildInputs = [ pyxdg PyGithub ];
meta = with lib; {
homepage = "http://the-brannons.com/software/cligh.html";
description = "A simple command-line interface to the facilities of Github";
longDescription = ''
Cligh is a simple command-line interface to the facilities of GitHub.
It is written by Christopher Brannon chris@the-brannons.com. The
current version is 0.3, released July 23, 2016. This program is still
in the early stage of development. It is by no means feature-complete.
A friend and I consider it useful, but others may not.
'';
platforms = platforms.all;
license = licenses.bsd3;
maintainers = [ maintainers.jhhuh ];
};
}