Archived
1
0
Fork 0

gnu: security-token: Use 'license:' prefix.

* gnu/packages/security-token.scm (libyubikey)[license]: Add prefix.
(ykclient)[license]: Add prefix.
This commit is contained in:
Marius Bakke 2016-10-26 11:00:58 +01:00
parent f9c339603d
commit 07b1fb8675
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -19,7 +19,7 @@
(define-module (gnu packages security-token) (define-module (gnu packages security-token)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (guix licenses) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
@ -45,7 +45,7 @@
"This package contains a C library and command-line tools that make up "This package contains a C library and command-line tools that make up
the low-level development kit for the Yubico YubiKey authentication device.") the low-level development kit for the Yubico YubiKey authentication device.")
(home-page "https://developers.yubico.com/yubico-c/") (home-page "https://developers.yubico.com/yubico-c/")
(license bsd-2))) (license license:bsd-2)))
(define-public ykclient (define-public ykclient
(package (package
@ -74,4 +74,4 @@ the low-level development kit for the Yubico YubiKey authentication device.")
one-time-password (OTP) YubiKey against Yubicos servers. See the Yubico one-time-password (OTP) YubiKey against Yubicos servers. See the Yubico
website for more information about Yubico and the YubiKey.") website for more information about Yubico and the YubiKey.")
(home-page "https://developers.yubico.com/yubico-c-client/") (home-page "https://developers.yubico.com/yubico-c-client/")
(license bsd-2))) (license license:bsd-2)))