I hope I disabled ncursesw in Cygwin. Also fixed device-mapper mention in system.nix. Also added pam in the list of sudo dependencies, it should be done anyway, but still only NOPASSWD entries work.

svn path=/nixpkgs/trunk/; revision=8931
This commit is contained in:
Michael Raskin
2007-06-28 22:14:25 +00:00
parent 40657fbece
commit 68d6762e0f
3 changed files with 12 additions and 7 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, coreutils}:
{stdenv, fetchurl, coreutils, pam}:
stdenv.mkDerivation {
name = "sudo-1.6.8";
@@ -13,5 +13,5 @@ stdenv.mkDerivation {
installFlags = " sudoers_uid=nixbld1 sudoers_gid=nixbld sysconfdir=$(prefix)/etc ";
buildInputs = [coreutils];
buildInputs = [coreutils pam];
}