diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-10-26 11:00:58 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-10-26 11:00:58 +0100 |
commit | 07b1fb86753cad7eced6eaca7fc972562d321c3a (patch) | |
tree | 861752b6dc59ca98bc4d7d0c827ef4b670d33212 /gnu | |
parent | f9c339603d751783e40ce99c9f09639f168ba731 (diff) | |
download | guix-07b1fb86753cad7eced6eaca7fc972562d321c3a.tar guix-07b1fb86753cad7eced6eaca7fc972562d321c3a.tar.gz |
gnu: security-token: Use 'license:' prefix.
* gnu/packages/security-token.scm (libyubikey)[license]: Add prefix.
(ykclient)[license]: Add prefix.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/security-token.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm index 48a9346573..36ccaa5203 100644 --- a/gnu/packages/security-token.scm +++ b/gnu/packages/security-token.scm @@ -19,7 +19,7 @@ (define-module (gnu packages security-token) #:use-module (gnu packages) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -45,7 +45,7 @@ "This package contains a C library and command-line tools that make up the low-level development kit for the Yubico YubiKey authentication device.") (home-page "https://developers.yubico.com/yubico-c/") - (license bsd-2))) + (license license:bsd-2))) (define-public ykclient (package @@ -74,4 +74,4 @@ the low-level development kit for the Yubico YubiKey authentication device.") one-time-password (OTP) YubiKey against Yubico’s servers. See the Yubico website for more information about Yubico and the YubiKey.") (home-page "https://developers.yubico.com/yubico-c-client/") - (license bsd-2))) + (license license:bsd-2))) |