summary refs log tree commit diff
path: root/pkgs/tools/networking/lsh/default.nix
blob: 087aeddf4970a803c8b7e894251af0854daf89dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{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";
  };
}