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,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
}:
buildPythonPackage rec {
pname = "vcver";
version = "0.2.12";
src = fetchFromGitHub {
owner = "toumorokoshi";
repo = "vcver-python";
rev = "c5d8a6f1f0e49bb25f5dbb07312e42cb4da096d6";
sha256 = "1cvgs70jf7ki78338zaglaw2dkvyndmx15ybd6k4zqwwsfgk490b";
};
propagatedBuildInputs = [
packaging
];
# circular dependency on test tool uranium https://pypi.org/project/uranium/
doCheck = false;
pythonImportsCheck = [ "vcver" ];
meta = with lib; {
description = "Reference Implementation of vcver";
homepage = "https://github.com/toumorokoshi/vcver-python";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}