diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-24 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-24 02:00:00 +0200 |
commit | 2bae0081f9bb5a73798a2cd9f655debf54b44872 (patch) | |
tree | b41e1cb00483b5b504328028865d358059d7729e /gnu/packages/admin.scm | |
parent | 674355c39988e3de1398b6df2feaba3cfe670362 (diff) |
gnu: nmrpflash: Use G-expressions.
* gnu/packages/admin.scm (nmrpflash)[arguments]:
Rewrite as G-expressions.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 23 |
1 files 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 |