nixpkgs/pkgs/tools/networking/openssh/builder.sh
2004-12-24 14:10:19 +00:00

14 lines
329 B
Bash

. $stdenv/setup
configureFlags="--with-privsep-path=$out/empty"
postInstall() {
rm $out/etc/ssh_host_dsa_key $out/etc/ssh_host_dsa_key.pub $out/etc/ssh_host_key $out/etc/ssh_host_key.pub $out/etc/ssh_host_rsa_key $out/etc/ssh_host_rsa_key.pub
chmod +r $out/libexec/ssh-keysign
}
#postInstall=postInstall
genericBuild