mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
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 {
|
||||
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.";
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user