[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/13: gnu: nmrpflash: Use G-expressions.
From: |
guix-commits |
Subject: |
02/13: gnu: nmrpflash: Use G-expressions. |
Date: |
Wed, 27 Sep 2023 18:47:00 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 2bae0081f9bb5a73798a2cd9f655debf54b44872
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 24 02:00:00 2023 +0200
gnu: nmrpflash: Use G-expressions.
* gnu/packages/admin.scm (nmrpflash)[arguments]:
Rewrite as G-expressions.
---
gnu/packages/admin.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 2fa64207b0..22cc678191 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5054,21 +5054,22 @@ entries, providing commands to add, remove, comment,
and search.")
(base32 "183nvxqdn8klin5f14f4cv9vjymj0izy0qmj1l76igmlcq7ravwx"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f ; none exist
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (add-before 'install 'prepare-install
+ (lambda _
+ (mkdir-p (string-append #$output "/bin")))))))
(native-inputs
(list pkg-config))
(inputs
(list libnl libpcap))
- (arguments
- `(#:tests? #f ; None exist
- #:make-flags
- (list (string-append "CC=" ,(cc-for-target))
- (string-append "PREFIX=" (assoc-ref %outputs "out")))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (add-before 'install 'prepare-install
- (lambda* (#:key outputs #:allow-other-keys)
- (mkdir-p (string-append (assoc-ref outputs "out") "/bin")))))))
(home-page "https://github.com/jclehner/nmrpflash")
(synopsis "Reflash (``unbrick'') Netgear devices with corrupted firmware")
(description "This package provides a utility to flash a new firmware
- branch master updated (d0438fcf65 -> be2344fbea), guix-commits, 2023/09/27
- 08/13: gnu: libdeflate: Update to 1.19., guix-commits, 2023/09/27
- 10/13: gnu: minicom: Update package style., guix-commits, 2023/09/27
- 12/13: gnu: rizin: Edit synopsis., guix-commits, 2023/09/27
- 06/13: gnu: astyle: Use G-expressions., guix-commits, 2023/09/27
- 13/13: gnu: 7kaa: Update to 2.15.6., guix-commits, 2023/09/27
- 11/13: gnu: rizin: Update to 0.6.2., guix-commits, 2023/09/27
- 02/13: gnu: nmrpflash: Use G-expressions.,
guix-commits <=
- 09/13: gnu: minicom: Update to 2.9., guix-commits, 2023/09/27
- 05/13: gnu: astyle: Omit static libraries., guix-commits, 2023/09/27
- 07/13: gnu: astyle: Don't build static or debug libraries., guix-commits, 2023/09/27
- 04/13: gnu: astyle: Update to 3.4.8., guix-commits, 2023/09/27
- 03/13: read-print: Be more mindful of horizontal space in packages., guix-commits, 2023/09/27
- 01/13: gnu: nmrpflash: Update to 0.9.21., guix-commits, 2023/09/27