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
This commit is contained in:
Sharlatan Hellseher 2025-06-27 12:45:26 +01:00
parent 790e726e6e
commit 145c08dcd1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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+)))