Files
nixpkgs/pkgs/servers/ssh-script/default.nix
Armijn Hemel 9a198b5192 more script work. Now what we need is:
* generic functions to register with the system, good for "weak dependencies"

svn path=/nixpkgs/trunk/; revision=5009
2006-03-08 19:38:12 +00:00

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];
}