summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunker <dk@junkeria.club>2025-04-11 08:56:04 +0700
committerAndreas Enge <andreas@enge.fr>2025-04-15 10:46:56 +0200
commit508ac3c82920f2cd22e509cd4e6e5ae38c9c589b (patch)
tree7819866675a1ef9f64fe930be0bfa5dadac1a637
parent09e12dfe467ad99f953dbef958b1d9bff2d11e45 (diff)
gnu: packages/dav.scm: Add (guix licenses) prefix.
* gnu/packages/dav.scm: Add (guix licenses) prefix. Change-Id: I21b6d3ab5ccd2413e557e98013b7689f8ec06d82 Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/dav.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/dav.scm b/gnu/packages/dav.scm
index 546118055f..af348aa468 100644
--- a/gnu/packages/dav.scm
+++ b/gnu/packages/dav.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2021 Tanguy Le Carrour <tanguy@bioneland.org>
;;; Copyright © 2022, 2024 Jonathan Brielmaier <jonathan.brielmaier@web.de>
;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2025 Junker <dk@junkeria.club>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -27,7 +28,7 @@
#:use-module (guix build-system pyproject)
#:use-module (guix download)
#:use-module (guix gexp)
- #:use-module (guix licenses)
+ #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (gnu packages)
@@ -79,7 +80,7 @@ Radicale intentionally does not fully comply with the CalDAV and CardDAV RFCs.
Instead, it supports the CalDAV and CardDAV implementations of popular
clients.")
(home-page "https://radicale.org/")
- (license gpl3+)))
+ (license license:gpl3+)))
(define-public xandikos
(package
@@ -117,7 +118,7 @@ efficient syncing
@item Automatically keep history and back up
@item Works with all tested CalDAV and CardDAV clients
@end itemize")
- (license gpl3+)))
+ (license license:gpl3+)))
(define-public vdirsyncer
(package
@@ -169,4 +170,4 @@ synchronize a CalDAV or CardDAV server with a local folder or file. The
local data can then be accessed via a variety of programs, none of which
have to know or worry about syncing to a server.")
(home-page "https://github.com/pimutils/vdirsyncer")
- (license bsd-3)))
+ (license license:bsd-3)))