06c5e48804
svn path=/nixpkgs/trunk/; revision=26970
32 lines
876 B
Nix
32 lines
876 B
Nix
{ stdenv, fetchurl, zlib, enableStatic ? false,
|
|
sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dropbear-0.52";
|
|
|
|
src = fetchurl {
|
|
url = http://matt.ucc.asn.au/dropbear/releases/dropbear-0.52.tar.bz2;
|
|
sha256 = "1h84dwld8qm19m0a1zslm2ssz65nr93irw7p2h5fjrlh9ix74ywc";
|
|
};
|
|
|
|
dontDisableStatic = enableStatic;
|
|
|
|
configureFlags = stdenv.lib.optional enableStatic "LDFLAGS=-static";
|
|
|
|
CFLAGS = "-DSFTPSERVER_PATH=\\\"${sftpPath}\\\"";
|
|
|
|
patches = [
|
|
# Allow sessions to inherit the PATH from the parent dropbear.
|
|
# Otherwise they only get the usual /bin:/usr/bin kind of PATH
|
|
./pass-path.patch
|
|
];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = {
|
|
homepage = http://matt.ucc.asn.au/dropbear/dropbear.html;
|
|
description = "An small footprint implementation of the SSH 2 protocol";
|
|
license = "mit";
|
|
};
|
|
}
|