add OpenSSH client + server, needs a lot of thorough testing with regards to server configuration, this will be the test case for NixOS. No PAM configs, might need tweaking, etc.

svn path=/nixpkgs/trunk/; revision=1210
This commit is contained in:
Armijn Hemel 2004-08-02 11:55:31 +00:00
parent b9b9e8b29e
commit ae04cf09b2
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,3 @@
. $stdenv/setup
genericBuild

View file

@ -0,0 +1,13 @@
{stdenv, fetchurl, zlib, openssl}:
stdenv.mkDerivation {
name = "openssh-3.8.1p1";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.bit.nl/mirror/openssh/openssh-3.8.1p1.tar.gz;
md5 = "1dbfd40ae683f822ae917eebf171ca42";
};
buildInputs = [zlib openssl];
}