diff options
| author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2026-05-17 15:59:33 +0300 |
|---|---|---|
| committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2026-05-17 16:14:34 +0300 |
| commit | 3bf26ffb080ae64b6fdb2e160d1ca6a311c1709b (patch) | |
| tree | 020575fd4628277f352d17adab9cd7f4061fa190 /gnu | |
| parent | 856d637884cde44b94a2c34d9fef04bae4f7881e (diff) | |
gnu: wavemon: Update to 0.9.7.
* gnu/packages/hardware.scm (wavemon): Update to 0.9.7.
[arguments]: Use GEXPs.
<#:make-flags>: Replace the hardcoded GCC reference with "cc-for-target"
output.
Change-Id: I6d55adc81124639ad3a5df713d6695da47b2938d
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/hardware.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 68adf9346d..d20ae9da45 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -1382,7 +1382,7 @@ Features: (define-public wavemon (package (name "wavemon") - (version "0.9.4") + (version "0.9.7") (source (origin (method git-fetch) @@ -1391,16 +1391,16 @@ Features: (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh")))) + (base32 "0f2x433jqf2469ybdziq50ggqbk3s4mi2i8s997b9lbcvj3nbdrw")))) (build-system gnu-build-system) (arguments - `(#:make-flags - (list "CC=gcc" - ;; Makefile.in (ab)uses $(datadir) as $(docdir). Set it to Guix's - ;; standard --docdir since it's only used as such. - (string-append "datadir=" (assoc-ref %outputs "out") - "/share/doc/" ,name "-" ,version)) - #:tests? #f)) ; no tests + (list #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + ;; Makefile.in (ab)uses $(datadir) as $(docdir). Set it to + ;; Guix's standard --docdir since it's only used as such. + (string-append "datadir=" (assoc-ref %outputs "out") + "/share/doc/" #$name "-" #$version)) + #:tests? #f)) ; no tests (native-inputs (list pkg-config)) (inputs |
