[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Add polkit-gnome.
From: |
Ludovic Courtès |
Subject: |
03/07: gnu: Add polkit-gnome. |
Date: |
Wed, 1 Feb 2017 22:53:49 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit 728dc8fa296e632b86cf56b5d3a52f7bcd6ca4e8
Author: Huang Ying <address@hidden>
Date: Mon Jan 30 11:07:31 2017 +0800
gnu: Add polkit-gnome.
* gnu/packages/polkit.scm (polkit-gnome): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/polkit.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm
index e224ca2..0e38dd6 100644
--- a/gnu/packages/polkit.scm
+++ b/gnu/packages/polkit.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2015 Andy Wingo <address@hidden>
;;; Copyright © 2015 Mark H Weaver <address@hidden>
;;; Copyright © 2016 Efraim Flashner <address@hidden>
+;;; Copyright © 2017 Huang Ying <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -28,6 +29,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages gtk)
#:use-module (gnu packages gnuzilla)
#:use-module (gnu packages linux)
#:use-module (gnu packages perl)
@@ -159,3 +161,27 @@ 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+)))
+
+(define-public polkit-gnome
+ (package
+ (name "polkit-gnome")
+ (version "0.105")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/"
+ name "/" version "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0sckmcbxyj6sbrnfc5p5lnw27ccghsid6v6wxq09mgxqcd4lk10p"))))
+ (build-system gnu-build-system)
+ (inputs `(("gtk+" ,gtk+)
+ ("polkit" ,polkit)))
+ (native-inputs `(("intltool" ,intltool)
+ ("pkg-config" ,pkg-config)))
+ (synopsis "Legacy polkit authentication agent for GNOME")
+ (description "PolicyKit-gnome provides a D-Bus session bus service
+that is used to bring up authentication dialogs used for obtaining
+privileges.")
+ (home-page "http://www.freedesktop.org/wiki/Software/polkit/")
+ (license lgpl2.0+)))
- branch master updated (fd05d7e -> 60b57c3), Ludovic Courtès, 2017/02/01
- 06/07: doc: Discuss encrypted swap space., Ludovic Courtès, 2017/02/01
- 05/07: doc: Clarify that 'guix pull' can't be easily rolled back., Ludovic Courtès, 2017/02/01
- 04/07: download: Add GNOME mirror., Ludovic Courtès, 2017/02/01
- 02/07: gnu: Add neomutt., Ludovic Courtès, 2017/02/01
- 07/07: gnu: magit: Update to 2.10.1., Ludovic Courtès, 2017/02/01
- 01/07: services: Make 'static-networking' extensible., Ludovic Courtès, 2017/02/01
- 03/07: gnu: Add polkit-gnome.,
Ludovic Courtès <=