add pam (but first test it on NixOS too)

svn path=/nixpkgs/trunk/; revision=4124
This commit is contained in:
Armijn Hemel 2005-10-24 16:07:50 +00:00
parent e473e8691c
commit 5c6e1efa41
2 changed files with 16 additions and 3 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "pam-0.80";
src = fetchurl {
url = http://www.nl.kernel.org/pub/linux/libs/pam/pre/library/Linux-PAM-0.80.tar.bz2;
md5 = "ccff87fe639efdfc22b1ba4a0f08ec57";
};
}

View File

@ -1283,6 +1283,10 @@ rec {
inherit stdenv mingetty shadowutils;
};
pam = (import ../os-specific/linux/pam) {
inherit stdenv fetchurl;
};
#nfsUtils = (import ../os-specific/linux/nfs-utils) {
# inherit fetchurl stdenv;
#};
@ -1377,9 +1381,9 @@ rec {
### APPLICATIONS
#openoffice = (import ../applications/office/openoffice) {
# inherit fetchurl stdenv tcsh;
#};
openoffice = (import ../applications/office/openoffice) {
inherit fetchurl stdenv tcsh cups;
};
cvs = (import ../applications/version-management/cvs) {
inherit fetchurl stdenv vim;