gnu: Add prefix to license imports in (gnu packages display-managers).

* gnu/packages/display-managers.scm: Import (guix licenses) with prefix
  "license:".
This commit is contained in:
David Craven 2016-08-28 16:26:28 +02:00
parent ec2e2f6ce2
commit 99c53e226e
No known key found for this signature in database
GPG key ID: C5E051C79C0BECDB

View file

@ -19,7 +19,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages display-managers)
#:use-module ((guix licenses) #:prefix l:)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system cmake)
@ -92,4 +92,4 @@ (define-public slim
login / shutdown / reboot commands, Single (GDM-like) or double (XDM-like)
input control, Can load predefined user at startup, Configurable welcome /
shutdown messages, Random theme selection.")
(license l:gpl2)))
(license license:gpl2)))