diff options
author | Ludovic Courtès <[email protected]> | 2021-11-27 22:25:35 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2021-11-27 23:06:17 +0100 |
commit | 26ebd111bcefc5d84cab545724544a3e57b4a558 (patch) | |
tree | 450e8ede81c09fb5faec6ed2681cde3d1c6dd620 | |
parent | 6b30eb189e48e290136d6a838729cf2eb07ee82f (diff) |
gnu: polkit: Rename default variable to 'polkit-mozjs'.
* gnu/packages/polkit.scm (polkit*): Rename to...
(polkit-mozjs): ... this. Adjust users.
-rw-r--r-- | gnu/packages/polkit.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm index 6d88f99b21..4cbe1feaba 100644 --- a/gnu/packages/polkit.scm +++ b/gnu/packages/polkit.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Andreas Enge <[email protected]> ;;; Copyright © 2015 Andy Wingo <[email protected]> -;;; Copyright © 2015 Ludovic Courtès <[email protected]> +;;; Copyright © 2015, 2021 Ludovic Courtès <[email protected]> ;;; Copyright © 2015 Mark H Weaver <[email protected]> ;;; Copyright © 2016 Efraim Flashner <[email protected]> ;;; Copyright © 2017 Huang Ying <[email protected]> @@ -50,7 +50,7 @@ #:use-module (gnu packages xml) #:export (polkit)) -(define-public polkit* +(define-public polkit-mozjs (package (name "polkit") (version "0.120") @@ -153,7 +153,7 @@ for unprivileged applications.") ;;; Variant of polkit built with Duktape, a lighter JavaScript engine compared ;;; to mozjs. (define-public polkit-duktape - (let ((base polkit*)) + (let ((base polkit-mozjs)) (package/inherit base (name "polkit-duktape") (source @@ -186,7 +186,7 @@ for unprivileged applications.") "Return a polkit package that can be built for SYSTEM; that is, either the regular polkit that requires mozjs or its duktape variant." (if (string-prefix? "x86_64" system) - polkit* + polkit-mozjs polkit-duktape))) ;;; Define a top level polkit variable that can be built on any of the |