gnu: librecast: Update to 0.8.0.
* gnu/packages/networking.scm (librecast): Update to 0.8.0. [inputs]: Add libbsd. [source]: Apply guix style.
This commit is contained in:
parent
9f67681db1
commit
369c1782c7
1 changed files with 12 additions and 11 deletions
|
@ -127,6 +127,7 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages kde-frameworks)
|
#:use-module (gnu packages kde-frameworks)
|
||||||
|
#:use-module (gnu packages libbsd)
|
||||||
#:use-module (gnu packages libevent)
|
#:use-module (gnu packages libevent)
|
||||||
#:use-module (gnu packages libidn)
|
#:use-module (gnu packages libidn)
|
||||||
#:use-module (gnu packages libusb)
|
#:use-module (gnu packages libusb)
|
||||||
|
@ -522,16 +523,16 @@ GLib-based library, libnice, as well as GStreamer elements to use it.")
|
||||||
(define-public librecast
|
(define-public librecast
|
||||||
(package
|
(package
|
||||||
(name "librecast")
|
(name "librecast")
|
||||||
(version "0.7.0")
|
(version "0.8.0")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://codeberg.org/librecast/librecast")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://codeberg.org/librecast/librecast")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0y0km0fv39m3i227pyg7fcr7d94gbji51fkcywqyrjgmk4j1hp1n"))))
|
(base32 "01m0q4n2hy3csbzil8ivjyzb1mh4w9jlh9iiv6z53kasl7aas27i"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
`(#:parallel-tests? #f
|
||||||
|
@ -541,7 +542,7 @@ GLib-based library, libnice, as well as GStreamer elements to use it.")
|
||||||
(string-append "PREFIX="
|
(string-append "PREFIX="
|
||||||
(assoc-ref %outputs "out"))))
|
(assoc-ref %outputs "out"))))
|
||||||
#:test-target "test"))
|
#:test-target "test"))
|
||||||
(inputs (list libsodium lcrq))
|
(inputs (list libsodium lcrq libbsd))
|
||||||
(synopsis "IPv6 multicast library")
|
(synopsis "IPv6 multicast library")
|
||||||
(description "Librecast is a C library which supports IPv6 multicast
|
(description "Librecast is a C library which supports IPv6 multicast
|
||||||
networking.")
|
networking.")
|
||||||
|
|
Reference in a new issue