diff options
| author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-07-03 22:57:45 +0300 |
|---|---|---|
| committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-07-03 23:07:22 +0300 |
| commit | 0ded9cf362b1cd77cc49a370ee8338ac4edb29d1 (patch) | |
| tree | 71367969d17d982ce5180813dfc7390b5f4b6f6c /gnu | |
| parent | 8a4a1fa92860af3e47dd11b588ca6ab7a85e592c (diff) | |
gnu: can-utils: Update to 2025.01.
* gnu/packages/networking.scm (can-utils): Update to 2025.01.
[arguments]: Use GEXPs.
Change-Id: I474e4d5ebc6c22091681141a4dd83d3b97b1cc5d
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/networking.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 8aa640a6fda..feac8fcf548 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm | |||
| @@ -3537,7 +3537,7 @@ from user-space. It requires a kernel built with SocketCAN support.") | |||
| 3537 | (define-public can-utils | 3537 | (define-public can-utils |
| 3538 | (package | 3538 | (package |
| 3539 | (name "can-utils") | 3539 | (name "can-utils") |
| 3540 | (version "2020.02.04") | 3540 | (version "2025.01") |
| 3541 | (source (origin | 3541 | (source (origin |
| 3542 | (method git-fetch) | 3542 | (method git-fetch) |
| 3543 | (uri (git-reference | 3543 | (uri (git-reference |
| @@ -3546,17 +3546,16 @@ from user-space. It requires a kernel built with SocketCAN support.") | |||
| 3546 | (file-name (git-file-name name version)) | 3546 | (file-name (git-file-name name version)) |
| 3547 | (sha256 | 3547 | (sha256 |
| 3548 | (base32 | 3548 | (base32 |
| 3549 | "1a3j1mmnb7pvgc8r7zzp6sdp7903in2hna6bmpraxln7cwlzn4l6")))) | 3549 | "1h8qh3170ign8b37m89i2jnnznzkwglv1kg63s3v1pp3lf3b9sf2")))) |
| 3550 | (build-system gnu-build-system) | 3550 | (build-system gnu-build-system) |
| 3551 | (arguments | 3551 | (arguments |
| 3552 | `(#:tests? #f ; No tests exist. | 3552 | (list #:tests? #f ; No tests exist. |
| 3553 | #:make-flags (list ,(string-append "CC=" (cc-for-target)) | 3553 | #:make-flags #~(list (string-append "CC=" #$(cc-for-target)) |
| 3554 | (string-append "PREFIX=" | 3554 | (string-append "PREFIX=" #$output)) |
| 3555 | (assoc-ref %outputs "out"))) | 3555 | #:phases |
| 3556 | #:phases | 3556 | #~(modify-phases %standard-phases |
| 3557 | (modify-phases %standard-phases | 3557 | (delete 'bootstrap) |
| 3558 | (delete 'bootstrap) | 3558 | (delete 'configure)))) |
| 3559 | (delete 'configure)))) | ||
| 3560 | (home-page "https://github.com/linux-can/can-utils") | 3559 | (home-page "https://github.com/linux-can/can-utils") |
| 3561 | (synopsis "CAN utilities") | 3560 | (synopsis "CAN utilities") |
| 3562 | (description "This package provides CAN utilities in the following areas: | 3561 | (description "This package provides CAN utilities in the following areas: |
