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:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "environmental-override";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1vhd37i6f8xh6kd61yxc2ynzgcln7v2p7fyzjmhbkdnws6gwfs6s";
|
||||
};
|
||||
|
||||
# No tests have been written for this library.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "environmental_override" ];
|
||||
|
||||
meta = {
|
||||
description = "Easily configure apps using simple environmental overrides";
|
||||
homepage = "https://github.com/coddingtonbear/environmental-override";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ nathanruiz ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue