summary refs log tree commit diff
path: root/pkgs/servers/ssh-script/default.nix
blob: 03897e26b35c5a64a1c83c9847d39a199f2049f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, ssh, bash, initscripts, coreutils, key ? null, syslog ? null, networking}:

stdenv.mkDerivation {
  name = "ssh-script-0.0.1";
  nicename = "sshd";
  server = "ssh";
  builder = ./builder.sh ;
  softdeps = [syslog];
  deps = [networking];
  inherit bash ssh initscripts coreutils;
  script = [./sshd];
}