3
0
Fork 0
forked from mirrors/nixpkgs

pass around the right parameters...d'oh

svn path=/nixpkgs/trunk/; revision=4408
This commit is contained in:
Armijn Hemel 2005-12-22 16:03:29 +00:00
parent 8f2c62c0e9
commit c8c6431758
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
source $stdenv/setup
sed -e "s^@bash\@^$bash^g" \
-e "s^@sshd\@\^$sshd^g" \
-e "s^@initscripts\@\^$initscripts^g" \
< $script > control
-e "s^@sshd\@^$ssh^g" \
-e "s^@initscripts\@^$initscripts^g" \
< $script > $out/control

View file

@ -4,6 +4,6 @@ stdenv.mkDerivation {
name = "ssh-script-0.0.1";
server = "ssh";
builder = ./builder.sh ;
inherit ssh initscripts;
inherit bash ssh initscripts;
script = [./sshd];
}