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:
parent
b9b9e8b29e
commit
ae04cf09b2
3
pkgs/tools/networking/openssh/builder.sh
Normal file
3
pkgs/tools/networking/openssh/builder.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
. $stdenv/setup
|
||||||
|
|
||||||
|
genericBuild
|
13
pkgs/tools/networking/openssh/default.nix
Normal file
13
pkgs/tools/networking/openssh/default.nix
Normal 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];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user