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:
@@ -0,0 +1,3 @@
|
|||||||
|
. $stdenv/setup
|
||||||
|
|
||||||
|
genericBuild
|
||||||
@@ -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];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user