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
26
pkgs/development/tools/mpfshell/default.nix
Normal file
26
pkgs/development/tools/mpfshell/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, python3Packages, fetchFromGitHub }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "mpfshell-unstable";
|
||||
version = "2020-04-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wendlers";
|
||||
repo = "mpfshell";
|
||||
rev = "429469fcccbda770fddf7a4277f5db92b1217664";
|
||||
sha256 = "0md6ih9vp65dacqy8gki3b2p4v76xb9ijqmxymk4b4f9z684x2m7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pyserial colorama websocket-client
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "mp.mpfshell" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/wendlers/mpfshell";
|
||||
description = "A simple shell based file explorer for ESP8266 Micropython based devices";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue