guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: teesy-loader-cli: Drop trailing #t.


From: guix-commits
Subject: 02/02: gnu: teesy-loader-cli: Drop trailing #t.
Date: Sat, 2 Sep 2023 17:46:42 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 771cbf2ab222478ebfc11b20f1833a3e0e908e6a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Sep 2 15:49:41 2023 -0400

    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.
---
 gnu/packages/flashing-tools.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 85b3988729..d9f59cd0b7 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -230,8 +230,7 @@ firmware from it.")
        (snippet
         `(begin
            ;; Remove example flash files and teensy rebooter flash binaries.
-           (for-each delete-file (find-files "." "\\.(elf|hex)$"))
-           #t))
+           (for-each delete-file (find-files "." "\\.(elf|hex)$"))))
        (patches (search-patches "teensy-loader-cli-help.patch"))))
     (build-system gnu-build-system)
     (arguments
@@ -244,10 +243,8 @@ firmware from it.")
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
                     (bin (string-append out "/bin")))
-               (install-file "teensy_loader_cli" bin)
-               #t))))))
-    (inputs
-     (list libusb-compat))
+               (install-file "teensy_loader_cli" bin)))))))
+    (inputs (list libusb-compat))       ;only compatible with libusb 0.1
     (synopsis "Command line firmware uploader for Teensy development boards")
     (description
      "The Teensy loader program communicates with your Teensy board when the



reply via email to

[Prev in Thread] Current Thread [Next in Thread]