gnu: calendar.scm: Use license: prefix.

* gnu/packages/calendar.scm (libical, khal, remind, libhdate): Use license: prefix.
This commit is contained in:
Marius Bakke 2018-02-20 03:24:08 +01:00
parent 9d13e77adb
commit 1eaba63f73
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -23,7 +23,7 @@
(define-module (gnu packages calendar) (define-module (gnu packages calendar)
#: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 utils) #:use-module (guix build utils)
@ -78,7 +78,7 @@ (define-public libical
(description (description
"Libical is an implementation of the iCalendar protocols and protocol "Libical is an implementation of the iCalendar protocols and protocol
data units.") data units.")
(license lgpl2.1))) (license license:lgpl2.1)))
(define-public khal (define-public khal
(package (package
@ -140,7 +140,7 @@ (define-public khal
(description "Khal is a standards based console calendar program, (description "Khal is a standards based console calendar program,
able to synchronize with CalDAV servers through vdirsyncer.") able to synchronize with CalDAV servers through vdirsyncer.")
(home-page "http://lostpackets.de/khal/") (home-page "http://lostpackets.de/khal/")
(license expat))) (license license:expat)))
(define-public remind (define-public remind
(package (package
@ -169,7 +169,7 @@ (define-public remind
program to be executed. It also features: sophisticated date calculation, program to be executed. It also features: sophisticated date calculation,
moon phases, sunrise/sunset, Hebrew calendar, alarms, PostScript output and moon phases, sunrise/sunset, Hebrew calendar, alarms, PostScript output and
proper handling of holidays.") proper handling of holidays.")
(license gpl2))) (license license:gpl2)))
(define-public libhdate (define-public libhdate
(package (package
@ -190,4 +190,4 @@ (define-public libhdate
of day, written in C, and including bindings for C++, pascal, perl, php, python, of day, written in C, and including bindings for C++, pascal, perl, php, python,
and ruby. It includes two illustrative command-line programs, @code{hcal} and and ruby. It includes two illustrative command-line programs, @code{hcal} and
@code{hdate}, and some snippets and scripts written in the binding languages.") @code{hdate}, and some snippets and scripts written in the binding languages.")
(license gpl3+))) (license license:gpl3+)))