Adding dropbear, a small implementation of ssh2 client and server.

I made it statically build by default

I had to fix the zlib static cross-build, because the native stripping corrupted the target
static library. It is not the first time I see this.

I add drobear to the cross-built packages for hydra.


svn path=/nixpkgs/trunk/; revision=20518
This commit is contained in:
Lluís Batlle i Rossell
2010-03-09 23:11:12 +00:00
parent dbf2a74829
commit 12e960f592
4 changed files with 33 additions and 0 deletions

View File

@@ -15,6 +15,10 @@ stdenv.mkDerivation {
fi
'';
crossAttrs = {
dontStrip = if static then true else false;
};
# zlib doesn't like the automatic --disable-shared from the Cygwin stdenv.
cygwinConfigureEnableShared = true;
}