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,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, pygments
, isPy3k
}:
buildPythonPackage rec {
pname = "pygments_better_html";
version = "0.1.4";
disabled = ! isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "028szd3k295yhz943bj19i4kx6f0pfh1fd2q14id0g84dl4i49dm";
};
propagatedBuildInputs = [ pygments ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "pygments_better_html" ];
meta = with lib; {
homepage = "https://github.com/Kwpolska/pygments_better_html";
description = "Improved line numbering for Pygments HTML formatter.";
license = licenses.bsd3;
maintainers = with maintainers; [ hexa ];
};
}