nixpkgs/pkgs/servers/ssh-script/default.nix
Armijn Hemel 304f3fbe9d some small changes...probably the way it is done now (declaring the
dependencies, such as "networking" in Nix expressions) is not entirely
right, at least, trying to start them from for example this SSH script is
not the right way. A cleaner solution is being developed :)

svn path=/nixpkgs/trunk/; revision=5034
2006-03-14 13:44:28 +00:00

13 lines
313 B
Nix

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