gnu: magic-wormhole: Add licenses prefix.

Sort modules alphabetically and add prefix for licenses module.

* gnu/packages/magic-wormhole.scm (magic-wormhole-mailbox-server,
magic-wormhole-transit-relay, magic-wormhole) [license]: Use prefix.

Change-Id: I2eac5730c9257fe435af102541bea4cdd9c66845
This commit is contained in:
Sharlatan Hellseher 2024-03-23 17:46:39 +00:00
parent d72fe75367
commit 3b43d01c61
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -18,12 +18,12 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages magic-wormhole) (define-module (gnu packages magic-wormhole)
#:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix licenses)
#:use-module (guix build-system pyproject) #:use-module (guix build-system pyproject)
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (gnu packages check) #:use-module (gnu packages check)
#:use-module (gnu packages python-check) #:use-module (gnu packages python-check)
#:use-module (gnu packages python-crypto) #:use-module (gnu packages python-crypto)
@ -67,7 +67,7 @@ (define-public magic-wormhole-mailbox-server
clients connect to. The server performs store-and-forward delivery for small clients connect to. The server performs store-and-forward delivery for small
key-exchange and control messages. Bulk data is sent over a direct TCP key-exchange and control messages. Bulk data is sent over a direct TCP
connection, or through a transit-relay.") connection, or through a transit-relay.")
(license expat))) (license license:expat)))
(define-public magic-wormhole-transit-relay (define-public magic-wormhole-transit-relay
(package (package
@ -104,7 +104,7 @@ (define-public magic-wormhole-transit-relay
both are behind NAT boxes. Each side makes a TCP connection to this server and both are behind NAT boxes. Each side makes a TCP connection to this server and
presents a handshake. Two connections with identical handshakes are glued presents a handshake. Two connections with identical handshakes are glued
together, allowing them to pretend they have a direct connection.") together, allowing them to pretend they have a direct connection.")
(license expat))) (license license:expat)))
(define-public magic-wormhole (define-public magic-wormhole
(package (package
@ -158,4 +158,4 @@ (define-public magic-wormhole
wordlist. The receiving side offers tab-completion on the codewords, so wordlist. The receiving side offers tab-completion on the codewords, so
usually only a few characters must be typed. Wormhole codes are single-use usually only a few characters must be typed. Wormhole codes are single-use
and do not need to be memorized.") and do not need to be memorized.")
(license expat))) (license license:expat)))