gnu: teesy-loader-cli: Drop trailing #t.
* gnu/packages/flashing-tools.scm (teensy-loader-cli) [source]: Drop trailing #t in snippet. [arguments]: Likewise for phases.master
parent
ddd8bb104a
commit
771cbf2ab2
|
@ -230,8 +230,7 @@ firmware from it.")
|
||||||
(snippet
|
(snippet
|
||||||
`(begin
|
`(begin
|
||||||
;; Remove example flash files and teensy rebooter flash binaries.
|
;; Remove example flash files and teensy rebooter flash binaries.
|
||||||
(for-each delete-file (find-files "." "\\.(elf|hex)$"))
|
(for-each delete-file (find-files "." "\\.(elf|hex)$"))))
|
||||||
#t))
|
|
||||||
(patches (search-patches "teensy-loader-cli-help.patch"))))
|
(patches (search-patches "teensy-loader-cli-help.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -244,10 +243,8 @@ firmware from it.")
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin")))
|
(bin (string-append out "/bin")))
|
||||||
(install-file "teensy_loader_cli" bin)
|
(install-file "teensy_loader_cli" bin)))))))
|
||||||
#t))))))
|
(inputs (list libusb-compat)) ;only compatible with libusb 0.1
|
||||||
(inputs
|
|
||||||
(list libusb-compat))
|
|
||||||
(synopsis "Command line firmware uploader for Teensy development boards")
|
(synopsis "Command line firmware uploader for Teensy development boards")
|
||||||
(description
|
(description
|
||||||
"The Teensy loader program communicates with your Teensy board when the
|
"The Teensy loader program communicates with your Teensy board when the
|
||||||
|
|
Reference in New Issue