me
/
guix
Archived
1
0
Fork 0

gnu: librecast: Update to 0.8.0.

* gnu/packages/networking.scm (librecast): Update to 0.8.0.
[inputs]: Add libbsd.
[source]: Apply guix style.
master
Vagrant Cascadian 2023-11-10 12:13:00 -08:00
parent 9f67681db1
commit 369c1782c7
No known key found for this signature in database
GPG Key ID: DC518FC87F9716AA
1 changed files with 12 additions and 11 deletions

View File

@ -127,6 +127,7 @@
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages libbsd)
#:use-module (gnu packages libevent)
#:use-module (gnu packages libidn)
#:use-module (gnu packages libusb)
@ -522,16 +523,16 @@ GLib-based library, libnice, as well as GStreamer elements to use it.")
(define-public librecast
(package
(name "librecast")
(version "0.7.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/librecast/librecast")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0y0km0fv39m3i227pyg7fcr7d94gbji51fkcywqyrjgmk4j1hp1n"))))
(version "0.8.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/librecast/librecast")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01m0q4n2hy3csbzil8ivjyzb1mh4w9jlh9iiv6z53kasl7aas27i"))))
(build-system gnu-build-system)
(arguments
`(#:parallel-tests? #f
@ -541,7 +542,7 @@ GLib-based library, libnice, as well as GStreamer elements to use it.")
(string-append "PREFIX="
(assoc-ref %outputs "out"))))
#:test-target "test"))
(inputs (list libsodium lcrq))
(inputs (list libsodium lcrq libbsd))
(synopsis "IPv6 multicast library")
(description "Librecast is a C library which supports IPv6 multicast
networking.")