me
/
guix
Archived
1
0
Fork 0

gnu: upnp.scm: Use license prefix.

* gnu/packages/upnp.scm: Use the 'license:' prefix to denote licences.
master
Efraim Flashner 2021-01-06 09:22:26 +02:00
parent 91bc4f4dfb
commit de194a39d3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@
#:use-module (guix utils) #:use-module (guix utils)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix licenses) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (ice-9 match)) #:use-module (ice-9 match))
@ -90,7 +90,7 @@ while running behind a UPnP-enabled router or firewall. Such applications
include peer-to-peer applications, active-mode FTP clients, DCC file transfers include peer-to-peer applications, active-mode FTP clients, DCC file transfers
over IRC, instant messaging, network games, and most server software.") over IRC, instant messaging, network games, and most server software.")
(license (license
(x11-style "file://LICENSE" "See 'LICENSE' file in the distribution")))) (license:x11-style "file://LICENSE" "See 'LICENSE' file in the distribution"))))
(define-public libupnp (define-public libupnp
(package (package
@ -121,7 +121,7 @@ API and code for building control points, devices, and bridges that are
compliant with Version 1.0 of the Universal Plug and Play Device Architecture compliant with Version 1.0 of the Universal Plug and Play Device Architecture
Specification and support several operating systems like Linux, *BSD, Solaris Specification and support several operating systems like Linux, *BSD, Solaris
and others.") and others.")
(license bsd-3))) (license license:bsd-3)))
(define-public readymedia (define-public readymedia
(package (package
@ -156,4 +156,4 @@ and others.")
(description "ReadyMedia (formerly known as MiniDLNA) is a simple media (description "ReadyMedia (formerly known as MiniDLNA) is a simple media
server, which serves multimedia content to compatible clients on the network. server, which serves multimedia content to compatible clients on the network.
It aims to be fully compliant with DLNA and UPnP-AV standards.") It aims to be fully compliant with DLNA and UPnP-AV standards.")
(license gpl2))) (license license:gpl2)))