From: ngraves--- via Guix-patches via <guix-patches@gnu.org>
To: 74873@debbugs.gnu.org
Subject: [bug#74873] gnu: Add pam-hooks.
Date: Sat, 14 Dec 2024 18:00:09 +0100 [thread overview]
Message-ID: <c7c6ca153c2a917b23590a7842c8c038@ngraves.fr> (raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-Add-pam-hooks.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-pam-hooks.patch, Size: 1968 bytes --]
From 93fd0cfaab9a0da1c414cc58d19d050c555556bd Mon Sep 17 00:00:00 2001
From: Nicolas Graves <ngraves@ngraves.fr>
Date: Sat, 14 Dec 2024 17:56:44 +0100
Subject: [PATCH] gnu: Add pam-hooks.
* gnu/packages/admin.scm (pam-hooks): Add variable.
---
gnu/packages/admin.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index b1889ceea0..e187e54e5f 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -3776,6 +3776,35 @@ (define-public interrobang
(home-page "https://github.com/TrilbyWhite/interrobang")
(license license:gpl3+))))
+(define-public pam-hooks
+ (package
+ (name "pam-hooks")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://upsilon.cc/~zack/hacking/software/"
+ name "/" name "_" version ".tar.gz"))
+ (sha256
+ (base32 "102azxhvs53akkhgg2dkqg8m0jd6804fx8v7gq7pp03qm3m7bhqi"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:make-flags #~`("CC=gcc"
+ ,(string-append "DESTDIR=" #$output))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure))
+ ;; There is a test directory, but it's unclear how to run them.
+ #:tests? #f))
+ (inputs (list linux-pam))
+ (home-page "https://upsilon.cc/~zack/hacking/software/pam-hooks/")
+ (synopsis "Linux-PAM module for login/logout hooks")
+ (description "@code{pam-hooks} is a tiny PAM module enabling the
+execution of hook scripts when a PAM session is opened or closed. The
+typical use case is the need of doing some per-user set-up when a user
+logs via a PAM-aware login mechanism and/or the need of doing some
+per-user clean-up when the user logs out.")
+ (license license:gpl3+)))
+
(define-public pam-krb5
(package
(name "pam-krb5")
--
2.46.0
reply other threads:[~2024-12-14 17:02 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c7c6ca153c2a917b23590a7842c8c038@ngraves.fr \
--to=guix-patches@gnu.org \
--cc=74873@debbugs.gnu.org \
--cc=ngraves@ngraves.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).