mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: libwebsockets: Update to 4.3.2.
* gnu/packages/web.scm (libwebsockets): Update to 4.3.2. [arguments]: Remove. [source]: Use GIT-FILE-NAME.
This commit is contained in:
parent
db19e30673
commit
d8fe2e4735
1 changed files with 3 additions and 9 deletions
|
@ -1498,7 +1498,7 @@ (define-public libyajl
|
|||
(define-public libwebsockets
|
||||
(package
|
||||
(name "libwebsockets")
|
||||
(version "4.1.6")
|
||||
(version "4.3.2")
|
||||
(source (origin
|
||||
;; The project does not publish tarballs, so we have to take
|
||||
;; things from Git.
|
||||
|
@ -1508,15 +1508,9 @@ (define-public libwebsockets
|
|||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0x56v4hsx92vm1zibfmnqb5g3v23kzciffn3fjlsc3sly2pknhsg"))
|
||||
(file-name (string-append name "-" version))))
|
||||
|
||||
"0rxgb05f6jignb0y367rs88cla2s1ndd9jfl4ms77q8w0wnbq762"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
;; XXX: The thing lacks a 'make test' target, because CMakeLists.txt
|
||||
;; doesn't use 'add_test', and it's unclear how to run the test suite.
|
||||
'(#:tests? #f))
|
||||
|
||||
(native-inputs (list perl)) ; to build the HTML doc
|
||||
(inputs (list zlib openssl))
|
||||
(synopsis "WebSockets library written in C")
|
||||
|
|
Loading…
Reference in a new issue