mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add pamtester.
* gnu/packages/authentication.scm (pamtester): New variable.
This commit is contained in:
parent
5f5e3873d7
commit
9e36859c9b
1 changed files with 26 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -115,3 +115,28 @@ (define-public yubico-pam
|
||||||
(description "The Yubico PAM module provides an easy way to integrate the
|
(description "The Yubico PAM module provides an easy way to integrate the
|
||||||
YubiKey into your existing user authentication infrastructure.")
|
YubiKey into your existing user authentication infrastructure.")
|
||||||
(license license:bsd-2))))
|
(license license:bsd-2))))
|
||||||
|
|
||||||
|
(define-public pamtester
|
||||||
|
(package
|
||||||
|
(name "pamtester")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://sourceforge/pamtester/pamtester/"
|
||||||
|
version "/pamtester-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("linux-pam" ,linux-pam)))
|
||||||
|
(home-page "http://pamtester.sourceforge.net/")
|
||||||
|
(synopsis "Utility for testing pluggable authentication modules (PAM) facility")
|
||||||
|
(description
|
||||||
|
"Pamtester is a tiny utility program to test the pluggable authentication
|
||||||
|
modules (PAM) facility, specifically designed to help PAM module authors to
|
||||||
|
intensively test their own modules.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue