1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* pam_unix2, a better passwd authentication module.

svn path=/nixpkgs/trunk/; revision=7304
This commit is contained in:
Eelco Dolstra 2006-12-11 01:39:02 +00:00
parent 52241b5b0f
commit 745acdd93a
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, pam}:
stdenv.mkDerivation {
name = "pam_unix2-2.1";
src = fetchurl {
url = ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2/pam_unix2-2.1.tar.bz2;
md5 = "08d3bc1940897b5dfcbe2f51dd979ad0";
};
buildInputs = [pam];
}

View file

@ -2191,6 +2191,10 @@ rec {
inherit stdenv fetchurl pam;
};
pam_unix2 = import ../os-specific/linux/pam_unix2 {
inherit stdenv fetchurl pam;
};
procps = import ../os-specific/linux/procps {
inherit fetchurl stdenv ncurses;
};