gnu: Add libyang

* gnu/packages/networking.scm (libyang): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Vincent Legoll 2021-01-05 11:57:27 +01:00 committed by Leo Famulari
parent 3c21da7c79
commit b78202f8a8
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -3519,6 +3519,33 @@ (define-public iwd
maximum extent possible.")
(license license:lgpl2.1+)))
(define-public libyang
(package
(name "libyang")
(version "1.0.215")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/CESNET/libyang")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0mrs2ppmq77z8sbqgm2w0rl9bfgybd6bcxanakfww4chih6cy0dw"))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags
(list "-DENABLE_BUILD_TESTS=ON" "-DENABLE_LYD_PRIV=ON")))
(propagated-inputs `(("pcre" ,pcre)))
(native-inputs `(("cmocka" ,cmocka)
("pkg-config" ,pkg-config)))
(home-page "https://github.com/CESNET/libyang")
(synopsis "YANG data modelling language library")
(description "libyang is a YANG data modelling language parser and toolkit
written (and providing API) in C. Current implementation covers YANG 1.0 (RFC
6020) as well as YANG 1.1 (RFC 7950).")
(license license:bsd-3)))
(define-public batctl
(package
(name "batctl")