* Build pwdutils with libnscd to keep the cache in sync after adding
users etc. svn path=/nixpkgs/trunk/; revision=7762
This commit is contained in:
parent
603d051a39
commit
8b2f183a7f
3 changed files with 17 additions and 3 deletions
10
pkgs/os-specific/linux/libnscd/default.nix
Normal file
10
pkgs/os-specific/linux/libnscd/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libnscd-2.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://suse.osuosl.org/people/kukuk/libnscd/libnscd-2.0.2.tar.bz2;
|
||||
sha256 = "0nxhwy42x44jlpdb5xq1prbvfjmds4hplmwv3687z0c4r9rn506l";
|
||||
};
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, pam, openssl}:
|
||||
{stdenv, fetchurl, pam, openssl, libnscd}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pwdutils-3.1.3";
|
||||
|
@ -8,7 +8,7 @@ stdenv.mkDerivation {
|
|||
md5 = "b18c601e282d8695cbb5ddd87eaa473c";
|
||||
};
|
||||
|
||||
buildInputs = [pam openssl];
|
||||
buildInputs = [pam openssl libnscd];
|
||||
|
||||
configureFlags = "--disable-ldap";
|
||||
}
|
||||
|
|
|
@ -2242,6 +2242,10 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libnscd = import ../os-specific/linux/libnscd {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
lvm2 = import ../os-specific/linux/lvm2 {
|
||||
inherit fetchurl stdenv devicemapper;
|
||||
};
|
||||
|
@ -2302,7 +2306,7 @@ rec {
|
|||
};
|
||||
|
||||
pwdutils = import ../os-specific/linux/pwdutils {
|
||||
inherit fetchurl stdenv pam openssl;
|
||||
inherit fetchurl stdenv pam openssl libnscd;
|
||||
};
|
||||
|
||||
shadowutils = import ../os-specific/linux/shadow {
|
||||
|
|
Loading…
Reference in a new issue