gnu: Add libsocketcan.
* gnu/packages/networking.scm (libsocketcan): New variable.
This commit is contained in:
parent
95b599bd48
commit
34d4bed23c
1 changed files with 24 additions and 0 deletions
|
@ -2499,6 +2499,30 @@ (define-public zyre
|
|||
(home-page "https://github.com/zeromq/zyre")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public libsocketcan
|
||||
(package
|
||||
(name "libsocketcan")
|
||||
(version "0.0.11")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.pengutronix.de/cgit/tools/libsocketcan")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"17z2y2r9xkixhr9bxr50m77fh710afl30s7jdhbxrvf56vmal2jr"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)))
|
||||
(home-page "https://git.pengutronix.de/cgit/tools/libsocketcan")
|
||||
(synopsis "SocketCAN user-space library")
|
||||
(description "This library allows controlling basic functions in SocketCAN
|
||||
from user-space. It requires a kernel built with SocketCAN support.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public can-utils
|
||||
(package
|
||||
(name "can-utils")
|
||||
|
|
Loading…
Reference in a new issue