mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
add pam (but first test it on NixOS too)
svn path=/nixpkgs/trunk/; revision=4124
This commit is contained in:
parent
e473e8691c
commit
5c6e1efa41
9
pkgs/os-specific/linux/pam/default.nix
Normal file
9
pkgs/os-specific/linux/pam/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user