diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-08-29 15:56:38 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-08-29 17:10:57 +0300 |
commit | 4c93ce42e5ba501ee65ba31ea0c175118476a341 (patch) | |
tree | 5d5e8fa4a5d0835d4ddc9ee97be67bc81bcd4cf4 /gnu/packages/linux.scm | |
parent | 3828222925fc8b5308dca6cade979adb9f42e316 (diff) | |
download | gnu-guix-4c93ce42e5ba501ee65ba31ea0c175118476a341.tar gnu-guix-4c93ce42e5ba501ee65ba31ea0c175118476a341.tar.gz |
gnu: shishi: Use linux-pam-1.2.
* gnu/packages/linux.scm (linux-pam-1.2): New variable.
* gnu/packages/shishi.scm (shishi)[inputs]: Use linux-pam-1.2.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 71e49c08fa..67434e0251 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -415,6 +415,22 @@ be used through the PAM API to perform tasks, like authenticating a user at login. Local and dynamic reconfiguration are its key features.") (license license:bsd-3))) +(define-public linux-pam-1.2 + (package + (inherit linux-pam) + (name "linux-pam-1.2") + (version "1.2.1") + (source + (origin + (method url-fetch) + (uri (string-append + "http://www.linux-pam.org/library/" + "Linux-PAM-" version ".tar.bz2")) + (sha256 + (base32 + "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl")))))) + + ;;; ;;; Miscellaneous. |