Add PAM support to lsh.
svn path=/nixpkgs/trunk/; revision=10970
This commit is contained in:
parent
f212e0380e
commit
f6fc5661b8
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, gnum4}:
|
{stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, gnum4, pam}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "lsh-2.0.4";
|
name = "lsh-2.0.4";
|
||||||
|
@ -7,7 +7,7 @@ stdenv.mkDerivation {
|
||||||
sha256 = "614b9d63e13ad3e162c82b6405d1f67713fc622a8bc11337e72949d613713091";
|
sha256 = "614b9d63e13ad3e162c82b6405d1f67713fc622a8bc11337e72949d613713091";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [gperf guile gmp zlib liboop gnum4];
|
buildInputs = [gperf guile gmp zlib liboop gnum4 pam];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "GNU lsh, a GPL'd implementation of the SSH protocol.";
|
description = "GNU lsh, a GPL'd implementation of the SSH protocol.";
|
||||||
|
|
|
@ -700,7 +700,7 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
lsh = import ../tools/networking/lsh {
|
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 {
|
man = import ../tools/misc/man {
|
||||||
|
|
Loading…
Reference in New Issue