File tree Expand file tree Collapse file tree 2 files changed +47
-0
lines changed
applications/misc/rcar-flash Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ fetchFromGitHub ,
4+ buildPythonPackage ,
5+ setuptools ,
6+ pyserial ,
7+ pyyaml ,
8+ pyftdi ,
9+ } :
10+
11+ buildPythonPackage {
12+ pname = "rcar-flash" ;
13+ version = "0.1.0-unstable-2025-07-18" ;
14+ format = "setuptools" ;
15+
16+ src = fetchFromGitHub {
17+ owner = "xen-troops" ;
18+ repo = "rcar_flash" ;
19+ rev = "f1de190c153926de67aced31884da13443737b88" ;
20+ hash = "sha256-qNRcMuxKNqzaARIXm3wz+GmwORTpxqeSTMBSp2JFJSU=" ;
21+ } ;
22+
23+ build-system = [
24+ setuptools
25+ ] ;
26+
27+ dependencies = [
28+ pyserial
29+ pyyaml
30+ pyftdi
31+ ] ;
32+
33+ # no tests implemented
34+ doCheck = false ;
35+
36+ pythonImportsCheck = [ "rcar_flash" ] ;
37+
38+ meta = {
39+ homepage = "https://github.com/xen-troops/rcar_flash" ;
40+ description = "Simple command line tool to automate writing IPLs (firmware) to Renesas RCAR-based boards" ;
41+ mainProgram = "rcar_flash" ;
42+ license = lib . licenses . mit ;
43+ maintainers = [ lib . maintainers . zatm8 ] ;
44+ } ;
45+ }
Original file line number Diff line number Diff line change @@ -16023,6 +16023,8 @@ self: super: with self; {
1602316023
1602416024 rbtools = callPackage ../development/python-modules/rbtools { };
1602516025
16026+ rcar-flash = callPackage ../applications/misc/rcar-flash { };
16027+
1602616028 rchitect = callPackage ../development/python-modules/rchitect { };
1602716029
1602816030 rclone-python = callPackage ../development/python-modules/rclone-python { };
You can’t perform that action at this time.
0 commit comments