[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add can-utils.
From: |
Danny Milosavljevic |
Subject: |
01/01: gnu: Add can-utils. |
Date: |
Sun, 20 May 2018 20:34:02 -0400 (EDT) |
dannym pushed a commit to branch master
in repository guix.
commit f1656a59f438e36925809246ea693ff97ee28592
Author: Danny Milosavljevic <address@hidden>
Date: Mon May 21 02:33:28 2018 +0200
gnu: Add can-utils.
* gnu/packages/networking.scm (can-utils): New variable.
---
gnu/packages/networking.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 7e69a48..9793620 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1802,3 +1802,42 @@ networks using zeromq. It has these key characteristics:
@end itemize")
(home-page "https://github.com/zeromq/zyre")
(license license:mpl2.0)))
+
+(define-public can-utils
+ (package
+ (name "can-utils")
+ (version "2018.02.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/linux-can/can-utils.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0r0zkm67bdcmbfypjr7z041d4zp0xzb379dyl8cvhmflh12fd2jb"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; No tests exist.
+ #:make-flags (list "CC=gcc"
+ (string-append "PREFIX="
+ (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (home-page "https://github.com/linux-can/can-utils")
+ (synopsis "CAN utilities")
+ (description "This package provides CAN utilities in the following areas:
+
address@hidden
address@hidden Basic tools to display, record, generate and replay CAN traffic
address@hidden CAN access via IP sockets
address@hidden CAN in-kernel gateway configuration
address@hidden CAN bus measurement and testing
address@hidden ISO-TP (ISO15765-2:2016 - this means messages with a body larger
than
+eight bytes) tools
address@hidden Log file converters
address@hidden Serial Line Discipline configuration for slcan driver
address@hidden itemize")
+ ;; Either BSD-3 or GPL-2 can be used.
+ (license (list license:bsd-3 license:gpl2))))