* generic functions to register with the system, good for "weak dependencies" svn path=/nixpkgs/trunk/; revision=5009
11 lines
240 B
Nix
11 lines
240 B
Nix
{stdenv, ssh, bash, initscripts, coreutils, key ? null}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ssh-script-0.0.1";
|
|
nicename = "sshd";
|
|
server = "ssh";
|
|
builder = ./builder.sh ;
|
|
inherit bash ssh initscripts coreutils;
|
|
script = [./sshd];
|
|
}
|