unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob fcabcae472cfa78f815963ba32e6134cc47f542d 1717 bytes (raw)
name: gnu/packages/mspdebug.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>

(define-module (gnu packages mspdebug)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses)
  #:use-module (gnu packages libusb)
  #:use-module (gnu packages readline))


(define-public mspdebug
  (package
    (name "mspdebug")
    (version "0.25")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/dlbeer/mspdebug.git")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32 "0prgwb5vx6fd4bj12ss1bbb6axj2kjyriyjxqrzd58s5jyyy8d3c"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases (modify-phases %standard-phases (delete 'configure) (delete 'check))
       #:make-flags
       (let ((target ,(%current-target-system)))
         (list (string-append "CC=" (if target
                                        (string-append target "-gcc")
                                        "gcc"))
               "INSTALL=install"
               (string-append "PREFIX=" %output)))))
    (inputs
     `(("libusb-compat" ,libusb-compat)
       ("readline" ,readline)))
    (synopsis "Free debugger for use with MSP430 MCUs")
    (description "MspDebug supports FET430UIF, eZ430, RF2500 and Olimex
MSP430-JTAG-TINY programmers, as well as many other compatible
devices.  It can be used as a proxy for gdb or as an independent
debugger with support for programming, disassembly and reverse
engineering.")
    (home-page "https://github.com/dlbeer/mspdebug")
    (license gpl2)))

debug log:

solving fcabcae472 ...
found fcabcae472 in https://yhetil.org/guix-patches/DM5PR1001MB2105C89D713D8507F978DC08C5B10@DM5PR1001MB2105.namprd10.prod.outlook.com/

applying [1/1] https://yhetil.org/guix-patches/DM5PR1001MB2105C89D713D8507F978DC08C5B10@DM5PR1001MB2105.namprd10.prod.outlook.com/
diff --git a/gnu/packages/mspdebug.scm b/gnu/packages/mspdebug.scm
new file mode 100644
index 0000000000..fcabcae472

Checking patch gnu/packages/mspdebug.scm...
Applied patch gnu/packages/mspdebug.scm cleanly.

index at:
100644 fcabcae472cfa78f815963ba32e6134cc47f542d	gnu/packages/mspdebug.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).