summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-27 12:45:26 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-27 12:49:40 +0100
commit145c08dcd18a993ad2355150bff8f8b83f085852 (patch)
treebe8ae3a244b867b527c2ef53ca1e25c72145e0b5
parent790e726e6e5130bc3094911e79b8701ca6e253a2 (diff)
gnu: Use license: prefix in (gnu packages polkit).
* gnu/packages/polkit.scm: Import (guix licenses) with the license: prefix. Adjust all license fields. Change-Id: Ia54db63ab112b4f43a8af067732addbaf38c4319
-rw-r--r--gnu/packages/polkit.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm
index 883688a7af..16a1ca6e0f 100644
--- a/gnu/packages/polkit.scm
+++ b/gnu/packages/polkit.scm
@@ -31,7 +31,7 @@
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix memoization)
- #:use-module ((guix licenses) #:select (lgpl2.0+))
+ #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (guix build utils)
@@ -165,7 +165,7 @@ handling the policy that allows unprivileged processes to speak to
privileged processes. It is a framework for centralizing the decision
making process with respect to granting access to privileged operations
for unprivileged applications.")
- (license lgpl2.0+)))
+ (license license:lgpl2.0+)))
(define-public polkit-qt
(package
@@ -198,7 +198,7 @@ for unprivileged applications.")
PolicyKit API through a Qt-styled API. It is mainly a wrapper around
QAction and QAbstractButton that lets you integrate those two component
easily with PolicyKit.")
- (license lgpl2.0+)))
+ (license license:lgpl2.0+)))
(define-public polkit-qt6
(package
@@ -227,4 +227,4 @@ easily with PolicyKit.")
that is used to bring up authentication dialogs used for obtaining
privileges.")
(home-page "https://www.freedesktop.org/wiki/Software/polkit/")
- (license lgpl2.0+)))
+ (license license:lgpl2.0+)))