Merge pull request #80829 from mweinelt/pr/tockloader
tockloader: init at v1.4.0
This commit is contained in:
commit
fb13a1fc8d
2 changed files with 29 additions and 0 deletions
27
pkgs/development/tools/misc/tockloader/default.nix
Normal file
27
pkgs/development/tools/misc/tockloader/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -24045,6 +24045,8 @@ in
|
|||
|
||||
tinyfugue = callPackage ../games/tinyfugue { };
|
||||
|
||||
tockloader = callPackage ../development/tools/misc/tockloader { };
|
||||
|
||||
tome2 = callPackage ../games/tome2 { };
|
||||
|
||||
tome4 = callPackage ../games/tome4 { };
|
||||
|
|
Loading…
Reference in a new issue