c8c6431758
svn path=/nixpkgs/trunk/; revision=4408
10 lines
198 B
Nix
10 lines
198 B
Nix
{stdenv, ssh, bash, initscripts, key ? null}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ssh-script-0.0.1";
|
|
server = "ssh";
|
|
builder = ./builder.sh ;
|
|
inherit bash ssh initscripts;
|
|
script = [./sshd];
|
|
}
|