diff options
author | Ian Eure <ian@retrospec.tv> | 2025-06-09 17:43:36 -0700 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-06-13 21:24:41 -0700 |
commit | 5a3f731f4123d06c7ef215e4a8f689753253e426 (patch) | |
tree | 97ad3e1d3c478b98a774772ab5a20f03d8b95aed | |
parent | 6c980300f485953bb4935abc2ea0047118e07466 (diff) |
gnu: minipro: Update to 0.7.3.minipro-0.7.3
* gnu/packages/electronics.scm (minipro): Update to 0.7.3.
Change-Id: If676110eb14627f44e9f534e99a06655d5162d2f
-rw-r--r-- | gnu/packages/electronics.scm | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index 821ba19f55..4d90b7cfb3 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -276,11 +276,13 @@ which allows one to install the M8 firmware on any Teensy.") license:zlib)))) (define-public minipro - ;; Information needed to fix Makefile - (let* ((date "2024-09-20 20:55:06 -0700")) + ;; When built from a Git repo, minipro expects GIT_DATE to be set to the + ;; value of `git show -s --format=%ci'. When updating the package, run this + ;; in a checkout and put the value here. + (let* ((date "2025-04-13 21:54:38 -0700")) (package (name "minipro") - (version "0.7.2") + (version "0.7.3") (source (origin (method git-fetch) @@ -289,19 +291,19 @@ which allows one to install the M8 firmware on any Teensy.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1a7sbbs1byngkh3bh0dxwxk1iw1dx0kvp946y2lxb8rm6b7hwqym")))) + (base32 "1525rn5h73xism16vmivd3cz93g8w76h24f0yvbpc35ydc3fkqf7")))) (native-inputs (list pkg-config which)) - (inputs (list libusb)) + (inputs (list libusb zlib)) (build-system gnu-build-system) (arguments (list - #:tests? #f ; no test suite + #:tests? #f ; No test suite. #:phases #~(modify-phases %standard-phases - (delete 'configure) ; No ./configure script + (delete 'configure) ; No ./configure script. (add-before 'build 'fix-makefile (lambda _ - ;; Fix some git related variables that minipro expects + ;; Fix some git related variables that minipro expects. (substitute* "Makefile" (("GIT_BRANCH = .*") (string-append "GIT_BRANCH = \"master\"\n")) @@ -315,11 +317,11 @@ which allows one to install the M8 firmware on any Teensy.") (string-append "UDEV_DIR=" #$output "/lib/udev") (string-append "COMPLETIONS_DIR=" #$output "/share/bash-completion/completions")))) - (synopsis "Controls the TL866xx series of chip programmers") + (synopsis "Controls XGecu's series of chip programmers") (description - "minipro is designed to program or read the contents of -chips supported by the TL866xx series of programmers. This includes many -microcontrollers, ROMs, EEPROMs and PLDs. + "minipro programs or reads microcontrollers, ROMs, EEPROMs +and PLDs supported by XGecu programmers, including TL866CS, TL866A, TL866II+, +T48, and T56. To use this program without root privileges you must install the necessary udev rules. This can be done by extending @code{udev-service-type} in your |