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
This commit is contained in:
Armijn Hemel
2006-03-08 19:38:12 +00:00
parent fe46e2a9b0
commit 9a198b5192
8 changed files with 160 additions and 2 deletions

View File

@@ -6,6 +6,6 @@ sed -e "s^@bash\@^$bash^g" \
-e "s^@sshd\@^$ssh^g" \
-e "s^@initscripts\@^$initscripts^g" \
-e "s^@coreutils\@^$coreutils^g" \
< $script > $out/control
< $script > $out/$nicename
chmod +x $out/control
chmod +x $out/$nicename

View File

@@ -2,6 +2,7 @@
stdenv.mkDerivation {
name = "ssh-script-0.0.1";
nicename = "sshd";
server = "ssh";
builder = ./builder.sh ;
inherit bash ssh initscripts coreutils;