nixpkgs/pkgs/tools/networking/openssh/builder.sh
Armijn Hemel a8d8a8f82c don't install keys. The Nix scripts empty the whole environment, including
some variables that are used by ssh-keygen.

svn path=/nixpkgs/branches/nixos-pkgs/; revision=2001
2005-01-10 15:33:43 +00:00

12 lines
150 B
Bash

. $stdenv/setup
configureFlags="--with-privsep-path=$out/empty"
installPhase() {
make install-nokeys
}
installPhase=installPhase
genericBuild