From 145c08dcd18a993ad2355150bff8f8b83f085852 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 27 Jun 2025 12:45:26 +0100 Subject: [PATCH] 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 --- gnu/packages/polkit.scm | 8 ++++---- 1 file 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 @@ #: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+)))