mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: mspdebug: Update to 0.25-0.4c4d94e.
* gnu/packages/debug.scm (mspdebug): Update to 0.25-0.4c4d94e. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
1ea032fb5f
commit
e4276fc4c1
1 changed files with 32 additions and 29 deletions
|
@ -5,7 +5,7 @@
|
||||||
;;; Copyright © 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2019 Pkill -9 <pkill9@runbox.com>
|
;;; Copyright © 2019 Pkill -9 <pkill9@runbox.com>
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
|
;;; Copyright © 2020, 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||||
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -757,35 +757,38 @@ use than similar tools like @command{mtrace}.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public mspdebug
|
(define-public mspdebug
|
||||||
(package
|
;; Last official release was 24 July 2017
|
||||||
(name "mspdebug")
|
(let ((commit "4c4d94e43bc4a18ecf82070ff81cd38dd5641e3b")
|
||||||
(version "0.25")
|
(revision "0"))
|
||||||
(source (origin
|
(package
|
||||||
(method git-fetch)
|
(name "mspdebug")
|
||||||
(uri (git-reference
|
(version (git-version "0.25" revision commit))
|
||||||
(url "https://github.com/dlbeer/mspdebug")
|
(source (origin
|
||||||
(commit (string-append "v" version))))
|
(method git-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/dlbeer/mspdebug")
|
||||||
(base32 "0prgwb5vx6fd4bj12ss1bbb6axj2kjyriyjxqrzd58s5jyyy8d3c"))))
|
(commit commit)))
|
||||||
(build-system gnu-build-system)
|
(file-name (git-file-name name version))
|
||||||
(arguments
|
(sha256
|
||||||
`(#:tests? #f ; no test suite
|
(base32 "1lgw1dsc1aglyja610ichadvgs5b0df3wlarinczb0ykf431gjln"))))
|
||||||
#:phases
|
(build-system gnu-build-system)
|
||||||
(modify-phases %standard-phases
|
(arguments
|
||||||
(delete 'configure)) ; no configure script
|
`(#:tests? #f ; no test suite
|
||||||
#:make-flags
|
#:phases
|
||||||
(list (string-append "CC=" ,(cc-for-target))
|
(modify-phases %standard-phases
|
||||||
"INSTALL=install"
|
(delete 'configure)) ; no configure script
|
||||||
(string-append "PREFIX=" %output))))
|
#:make-flags
|
||||||
(inputs
|
(list (string-append "CC=" ,(cc-for-target))
|
||||||
`(("libusb-compat" ,libusb-compat)
|
"INSTALL=install"
|
||||||
("readline" ,readline)))
|
(string-append "PREFIX=" %output))))
|
||||||
(synopsis "Debugging tool for MSP430 MCUs")
|
(inputs
|
||||||
(description "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex
|
`(("libusb-compat" ,libusb-compat)
|
||||||
|
("readline" ,readline)))
|
||||||
|
(synopsis "Debugging tool for MSP430 MCUs")
|
||||||
|
(description "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex
|
||||||
MSP430-JTAG-TINY programmers, as well as many other compatible
|
MSP430-JTAG-TINY programmers, as well as many other compatible
|
||||||
devices. It can be used as a proxy for gdb or as an independent
|
devices. It can be used as a proxy for gdb or as an independent
|
||||||
debugger with support for programming, disassembly and reverse
|
debugger with support for programming, disassembly and reverse
|
||||||
engineering.")
|
engineering.")
|
||||||
(home-page "https://github.com/dlbeer/mspdebug")
|
(home-page "https://github.com/dlbeer/mspdebug")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue