tockloader: init at v1.4.0

This commit is contained in:
Martin Weinelt 2020-02-22 21:59:02 +01:00
parent 3a6161785a
commit 70b9b715c5
No known key found for this signature in database
GPG key ID: BD4AA0528F63F17E
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "tockloader";
version = "1.4.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0l8mvlqzyq2bfb6g5zhgv2ndgyyrmpww2l7f2snbli73g6x5j2g2";
};
propagatedBuildInputs = with python3Packages; [
argcomplete
colorama
crcmod
pytoml
pyserial
];
meta = with lib; {
homepage = "https://github.com/tock/tockloader";
license = licenses.mit;
description = "Tool for programming Tock onto hardware boards.";
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -23939,6 +23939,8 @@ in
tinyfugue = callPackage ../games/tinyfugue { };
tockloader = callPackage ../development/tools/misc/tockloader { };
tome2 = callPackage ../games/tome2 { };
tome4 = callPackage ../games/tome4 { };