[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: linux-pam: Add cracklib to inputs.
From: |
David Craven |
Subject: |
02/02: gnu: linux-pam: Add cracklib to inputs. |
Date: |
Sun, 28 Aug 2016 13:02:41 +0000 (UTC) |
dvc pushed a commit to branch core-updates
in repository guix.
commit 25d1b3107fc7ebdc155649722fc257f4dbc4b04a
Author: David Craven <address@hidden>
Date: Sun Aug 28 15:00:49 2016 +0200
gnu: linux-pam: Add cracklib to inputs.
* gnu/packages/linux.scm (linux-pam)[inputs]: Add cracklib.
---
gnu/packages/linux.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 9ff000f..71e49c0 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -55,6 +55,7 @@
#:use-module (gnu packages libusb)
#:use-module (gnu packages maths)
#:use-module (gnu packages ncurses)
+ #:use-module (gnu packages password-utils)
#:use-module (gnu packages perl)
#:use-module (gnu packages pciutils)
#:use-module (gnu packages pkg-config)
@@ -392,12 +393,9 @@ It has been modified to remove all non-free binary blobs.")
"1fyi04d5nsh8ivd0rn2y0z83ylgc0licz7kifbb6xxi2ylgfs6i4"))))
(build-system gnu-build-system)
(native-inputs
- `(("flex" ,flex)
-
- ;; TODO: optional dependencies
- ;; ("libxcrypt" ,libxcrypt)
- ;; ("cracklib" ,cracklib)
- ))
+ `(("flex" ,flex)))
+ (inputs
+ `(("cracklib" ,cracklib)))
(arguments
'(;; Most users, such as `shadow', expect the headers to be under
;; `security'.
@@ -405,7 +403,7 @@ It has been modified to remove all non-free binary blobs.")
(assoc-ref %outputs "out")
"/include/security"))
- ;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
+ ;; FIXME: Tests won't run in chroot, presumably because /etc/pam.d
;; isn't available.
#:tests? #f))
(home-page "http://www.linux-pam.org/")