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 883688a7afa..16a1ca6e0f4 100644
--- a/gnu/packages/polkit.scm
+++ b/gnu/packages/polkit.scm
@@ -31,7 +31,7 @@
31 #:use-module (guix download) 31 #:use-module (guix download)
32 #:use-module (guix gexp) 32 #:use-module (guix gexp)
33 #:use-module (guix memoization) 33 #:use-module (guix memoization)
34 #:use-module ((guix licenses) #:select (lgpl2.0+)) 34 #:use-module ((guix licenses) #:prefix license:)
35 #:use-module (guix packages) 35 #:use-module (guix packages)
36 #:use-module (guix utils) 36 #:use-module (guix utils)
37 #:use-module (guix build utils) 37 #:use-module (guix build utils)
@@ -165,7 +165,7 @@ handling the policy that allows unprivileged processes to speak to
165privileged processes. It is a framework for centralizing the decision 165privileged processes. It is a framework for centralizing the decision
166making process with respect to granting access to privileged operations 166making process with respect to granting access to privileged operations
167for unprivileged applications.") 167for unprivileged applications.")
168 (license lgpl2.0+))) 168 (license license:lgpl2.0+)))
169 169
170(define-public polkit-qt 170(define-public polkit-qt
171 (package 171 (package
@@ -198,7 +198,7 @@ for unprivileged applications.")
198PolicyKit API through a Qt-styled API. It is mainly a wrapper around 198PolicyKit API through a Qt-styled API. It is mainly a wrapper around
199QAction and QAbstractButton that lets you integrate those two component 199QAction and QAbstractButton that lets you integrate those two component
200easily with PolicyKit.") 200easily with PolicyKit.")
201 (license lgpl2.0+))) 201 (license license:lgpl2.0+)))
202 202
203(define-public polkit-qt6 203(define-public polkit-qt6
204 (package 204 (package
@@ -227,4 +227,4 @@ easily with PolicyKit.")
227that is used to bring up authentication dialogs used for obtaining 227that is used to bring up authentication dialogs used for obtaining
228privileges.") 228privileges.")
229 (home-page "https://www.freedesktop.org/wiki/Software/polkit/") 229 (home-page "https://www.freedesktop.org/wiki/Software/polkit/")
230 (license lgpl2.0+))) 230 (license license:lgpl2.0+)))