gnu: guile-websocket: Rename from "guile3.0-websocket".

* gnu/packages/guile-xyz.scm (guile3.0-websocket): Rename to...
(guile-websocket): ... this.
[inputs]: Use GUILE-3.0.
(guile3.0-websocket): Define as 'deprecated-package'.
This commit is contained in:
Ludovic Courtès 2020-05-10 15:26:27 +02:00
parent 318e1a9336
commit b141e1d5dd
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -3470,10 +3470,10 @@ (define-public guile-irc
;; Some file headers incorrectly say LGPLv2+.
(license license:lgpl2.1+))))
(define-public guile3.0-websocket
(define-public guile-websocket
(let ((commit "c854e0f84a40d972cbd532bbb89c97ca0126a7cf"))
(package
(name "guile3.0-websocket")
(name "guile-websocket")
(version "0.1")
(source
(origin
@ -3508,9 +3508,12 @@ (define-public guile3.0-websocket
`(("autoconf" ,autoconf)
("automake" ,automake)))
(inputs
`(("guile" ,guile-next)))
`(("guile" ,guile-3.0)))
(synopsis "Websocket server/client for Guile")
(description "Guile-websocket provides an implementation of the
WebSocket protocol as defined by RFC 6455.")
(home-page "https://git.dthompson.us/guile-websocket.git")
(license license:lgpl3+))))
(define-public guile3.0-websocket
(deprecated-package "guile3.0-websocket" guile-websocket))