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,30 @@
{ lib, buildPythonPackage, fetchFromGitHub
, jinja2
, msrest
, vsts
}:
buildPythonPackage rec {
version = "0.0.22";
pname = "azure-functions-devops-build";
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-functions-devops-build";
# rev picked based on pypi release date
rev = "c8249670acc77333e3de8b21dec60faf7ecf0951";
sha256 = "1slc7jd92v9q1qg1yacnrpi2a7hi7iw61wzbzfd6wx9q63pw9yqi";
};
propagatedBuildInputs = [ jinja2 msrest vsts ];
# circular dependency with azure-cli-core
doCheck = false;
meta = with lib; {
description = "Integrate Azure Functions with Azure DevOps. Specifically made for the Azure CLI";
homepage = "https://github.com/Azure/azure-functions-devops-build";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}