2008-03-05 17:49:51 +01:00
|
|
|
{stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, gnum4, pam}:
|
2008-02-12 11:51:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "lsh-2.0.4";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://www.lysator.liu.se/~nisse/archive/lsh-2.0.4.tar.gz;
|
|
|
|
sha256 = "614b9d63e13ad3e162c82b6405d1f67713fc622a8bc11337e72949d613713091";
|
|
|
|
};
|
|
|
|
|
2009-03-15 15:11:21 +01:00
|
|
|
patches = [ ./pam-service-name.patch ];
|
|
|
|
|
2008-03-05 17:49:51 +01:00
|
|
|
buildInputs = [gperf guile gmp zlib liboop gnum4 pam];
|
2008-02-12 11:51:44 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-03-20 15:35:03 +01:00
|
|
|
description = "GNU lsh, a GPL'd implementation of the SSH protocol";
|
2009-03-15 15:11:21 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
lsh is a free implementation (in the GNU sense) of the ssh
|
|
|
|
version 2 protocol, currently being standardised by the IETF
|
|
|
|
SECSH working group.
|
|
|
|
'';
|
|
|
|
|
2008-02-12 11:51:44 +01:00
|
|
|
homepage = http://www.lysator.liu.se/~nisse/lsh/;
|
2009-03-15 15:11:21 +01:00
|
|
|
license = "GPLv2+";
|
2008-02-12 11:51:44 +01:00
|
|
|
};
|
|
|
|
}
|