2006-03-14 14:44:28 +01:00
|
|
|
{stdenv, ssh, bash, initscripts, coreutils, key ? null, syslog ? null, networking}:
|
2005-12-15 00:35:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ssh-script-0.0.1";
|
2006-03-08 20:38:12 +01:00
|
|
|
nicename = "sshd";
|
2005-12-15 00:35:02 +01:00
|
|
|
server = "ssh";
|
|
|
|
builder = ./builder.sh ;
|
2006-03-14 14:44:28 +01:00
|
|
|
softdeps = [syslog];
|
|
|
|
deps = [networking];
|
2005-12-22 19:10:47 +01:00
|
|
|
inherit bash ssh initscripts coreutils;
|
2005-12-15 00:35:02 +01:00
|
|
|
script = [./sshd];
|
|
|
|
}
|