gnu: Add lksctp-tools.

* gnu/packages/networking.scm (lksctp-tools): New variable.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
Raghav Gururajan 2020-07-03 09:43:19 -04:00 committed by Danny Milosavljevic
parent d4bd5c60da
commit 24a2aaf3ff
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -133,6 +133,41 @@ (define-module (gnu packages networking)
#:use-module (gnu packages xml)
#:use-module (ice-9 match))
(define-public lksctp-tools
(package
(name "lksctp-tools")
(version "1.0.18")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/sctp/lksctp-tools.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1x4fwzrlzvfa3vcpja97m8w5g9ir2zrh4zs7zksminrnmdrs0dsr"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("libtool" ,libtool)
("pkg-config" ,pkg-config)))
(inputs
`(("linux-headers" ,linux-libre-headers)))
(synopsis "Linux SCTP helper library")
(description "Lksctp-tools project provides a user space library for SCTP
(libsctp) including C language header files (netinet/sctp.h) for accessing SCTP
specific application programming interfaces not provided by the standard
sockets, and also some helper utilities around SCTP.")
(home-page "http://lksctp.sourceforge.net/")
(license
(list
;; Library.
license:lgpl2.1+
;; Others.
license:gpl2+))))
(define-public nng
(package
(name "nng")