mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add pam-uaccess.
* gnu/packages/admin.scm (pam-uaccess): New variable. Change-Id: I71b16e8548359fe59b2d09bb91b050bf9be33a78
This commit is contained in:
parent
b896b9102b
commit
368c6e3cf0
1 changed files with 27 additions and 0 deletions
|
@ -4907,6 +4907,33 @@ (define-public pam-mount
|
||||||
LUKS volumes encrypted with the user's log-in password.")
|
LUKS volumes encrypted with the user's log-in password.")
|
||||||
(license (list license:gpl2+ license:lgpl2.1+))))
|
(license (list license:gpl2+ license:lgpl2.1+))))
|
||||||
|
|
||||||
|
(define-public pam-uaccess
|
||||||
|
(let ((commit "54fbf043c63cc500b4850b0b4a12ea14078f2b53")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "pam-uaccess")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://git.sr.ht/~kennylevinsen/pam_uaccess")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"08068cw4nvcanym8b5dyccnnb3qc3f09pbvi6fcfiz227yx73npc"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(inputs (list acl eudev linux-pam))
|
||||||
|
(home-page "https://git.sr.ht/~kennylevinsen/pam_uaccess")
|
||||||
|
(synopsis
|
||||||
|
"PAM module that grants access to devices tagged @code{uaccess} in udev")
|
||||||
|
(description
|
||||||
|
"@code{pam_uaccess} is a PAM module that grants access to devices tagged
|
||||||
|
@code{uaccess} in udev for the duration of the users' session, replacing
|
||||||
|
elogind's uaccess feature.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public jc
|
(define-public jc
|
||||||
(package
|
(package
|
||||||
(name "jc")
|
(name "jc")
|
||||||
|
|
Loading…
Reference in a new issue