summaryrefslogtreecommitdiff
path: root/gnu/packages/embedded.scm
diff options
context:
space:
mode:
authorJunker <dk@junkeria.club>2025-05-21 15:30:37 +0700
committerAndreas Enge <andreas@enge.fr>2025-06-02 16:56:49 +0200
commitdf105b8b8ecacf46d070f8e97a149999741dd81e (patch)
tree0ef8a27667ed6dbf42c984933594b5029aca5c35 /gnu/packages/embedded.scm
parent757aefeaa4df338e0564044ba344f1daa81c5f10 (diff)
gnu: Add cc-tool.
* gnu/packages/embedded.scm (cc-tool): New variable. Change-Id: Ie97b404f3fa68b340d6633b55d7a6bbea04b292f Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/embedded.scm')
-rw-r--r--gnu/packages/embedded.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 6a1d47c4e9b..999ac1875e0 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -14,6 +14,7 @@
14;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> 14;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
15;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org> 15;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
16;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> 16;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
17;;; Copyright © 2025 Junker dk@junkeria.club
17;;; 18;;;
18;;; This file is part of GNU Guix. 19;;; This file is part of GNU Guix.
19;;; 20;;;
@@ -2182,3 +2183,31 @@ TS-4900 family. The included commands are:
2182@item tssilomon 2183@item tssilomon
2183@end itemize") 2184@end itemize")
2184 (license license:bsd-2)))) 2185 (license license:bsd-2))))
2186
2187(define-public cc-tool
2188 (package
2189 (name "cc-tool")
2190 (version "0.27")
2191 (source
2192 (origin
2193 (method git-fetch)
2194 (uri (git-reference
2195 (url "https://github.com/dashesy/cc-tool")
2196 (commit (string-append "v" version))))
2197 (file-name (git-file-name name version))
2198 (sha256
2199 (base32 "1bnyp3fxhzhz6in4yx8s6vh004gslykrpysdz6b8x8b96ha35c7c"))))
2200 (build-system gnu-build-system)
2201 (inputs (list libusb))
2202 (native-inputs (list pkg-config
2203 boost
2204 automake
2205 autoconf
2206 libtool))
2207 (home-page "https://github.com/dashesy/cc-tool")
2208 (synopsis "Support for Texas Instruments CC Debugger in Linux")
2209 (description
2210 "cc-tool provides support for Texas Instruments CC Debugger for Linux OS
2211in order to program 8051-based System-On-Chip devices: CC254x CC253x CC243x
2212CC251x CC111x.")
2213 (license license:gpl2)))