doas: fix no-pam build with libxcrypt
This commit is contained in:
parent
b12db0624f
commit
aaef5af8b9
1 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
, fetchFromGitHub
|
||||
, bison
|
||||
, pam
|
||||
, libxcrypt
|
||||
|
||||
, withPAM ? true
|
||||
, withTimestamp ? true
|
||||
|
@ -38,7 +39,9 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
nativeBuildInputs = [ bison ];
|
||||
buildInputs = [ pam ];
|
||||
buildInputs = [ ]
|
||||
++ lib.optional withPAM pam
|
||||
++ lib.optional (!withPAM) libxcrypt;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Executes the given command as another user";
|
||||
|
|
Loading…
Reference in a new issue