nixpkgs/pkgs/tools/networking/lsh/default.nix
Ludovic Courtès c81efcdedb Add GNU lsh, a GPL'd implementation of SSH, and `liboop', and event loop library.
svn path=/nixpkgs/trunk/; revision=10637
2008-02-12 10:51:44 +00:00

18 lines
501 B
Nix

{stdenv, fetchurl, gperf, guile, gmp, zlib, liboop, gnum4}:
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";
};
buildInputs = [gperf guile gmp zlib liboop gnum4];
meta = {
description = "GNU lsh, a GPL'd implementation of the SSH protocol.";
homepage = http://www.lysator.liu.se/~nisse/lsh/;
license = "GPL";
};
}