mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add accountsservice.
* gnu/packages/freedesktop.scm (accountsservice): New variable.
This commit is contained in:
parent
86aff7912c
commit
83a2e49204
1 changed files with 39 additions and 0 deletions
|
@ -372,3 +372,42 @@ (define-public udisks
|
|||
message bus.")
|
||||
;; The dynamic library are under LGPLv2+, others are GPLv2+.
|
||||
(license (list license:gpl2+ license:lgpl2.0+))))
|
||||
|
||||
(define-public accountsservice
|
||||
(package
|
||||
(name "accountsservice")
|
||||
(version "0.6.40")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://www.freedesktop.org/software/"
|
||||
name "/" name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0ayb3y3l25dmwxlh9g071h02mphjfbkvi2k5f635bayb01k7akzh"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f ; XXX: tests require DocBook 4.1.2
|
||||
#:configure-flags
|
||||
'("--localstatedir=/var")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before
|
||||
'configure 'pre-configure
|
||||
(lambda _
|
||||
;; Don't try to create /var/lib/AccoutsService.
|
||||
(substitute* "src/Makefile.in"
|
||||
(("\\$\\(MKDIR_P\\).*/lib/AccountsService.*") "true")))))))
|
||||
(native-inputs
|
||||
`(("glib:bin" ,glib "bin") ; for gdbus-codegen, etc.
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("intltool" ,intltool)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("polkit" ,polkit)))
|
||||
(home-page "http://www.freedesktop.org/wiki/Software/AccountsService/")
|
||||
(synopsis "D-Bus interface for user account query and manipulation")
|
||||
(description
|
||||
"The AccountService project provides a set of D-Bus interfaces for querying
|
||||
and manipulating user account information and an implementation of these
|
||||
interfaces, based on the useradd, usermod and userdel commands.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue