From 0d963875278d585eb86bc87127efa20a8d627595 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 6 Mar 2023 23:52:45 +0100 Subject: gnu: mate-polkit-for-xfce: Break circular top-level references. Fixes . Reported by Maxime Devos . * gnu/packages/xfce.scm (mate-polkit-for-xfce): Move to... * gnu/packages/mate.scm (mate-polkit-for-xfce): ... here. --- gnu/packages/mate.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'gnu/packages/mate.scm') diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index ce62366985..2f38946fe1 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -1470,6 +1470,23 @@ MATE Desktop to monitor your system resources and usage.") used to bring up authentication dialogs.") (license license:lgpl2.1))) +(define-public mate-polkit-for-xfce + (package/inherit mate-polkit + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'install 'patch-desktop + (lambda* (#:key outputs #:allow-other-keys) + (let* ((common (string-append + (assoc-ref outputs "out") "/etc/xdg/autostart/" + "polkit-mate-authentication-agent-")) + (old (string-append common "1.desktop")) + (new (string-append common "for-xfce-1.desktop"))) + (substitute* old (("MATE;") "XFCE;")) + ;; To avoid a conflict if both MATE and XFCE are installed. + (rename-file old new))))))) + (properties `((hidden? . #t))))) + (define-public mate (package (name "mate") -- cgit 1.4.1