Add PAM support to lsh.

svn path=/nixpkgs/trunk/; revision=10970
This commit is contained in:
Ludovic Courtès 2008-03-05 16:49:51 +00:00
parent f212e0380e
commit f6fc5661b8
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, gnum4}:
{stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, gnum4, pam}:
stdenv.mkDerivation {
name = "lsh-2.0.4";
@ -7,7 +7,7 @@ stdenv.mkDerivation {
sha256 = "614b9d63e13ad3e162c82b6405d1f67713fc622a8bc11337e72949d613713091";
};
buildInputs = [gperf guile gmp zlib liboop gnum4];
buildInputs = [gperf guile gmp zlib liboop gnum4 pam];
meta = {
description = "GNU lsh, a GPL'd implementation of the SSH protocol.";

View file

@ -700,7 +700,7 @@ rec {
};
lsh = import ../tools/networking/lsh {
inherit stdenv fetchurl gperf guile gmp zlib liboop gnum4;
inherit stdenv fetchurl gperf guile gmp zlib liboop gnum4 pam;
};
man = import ../tools/misc/man {