2017-04-14 10:59:28 +00:00
|
|
|
{ stdenv, lib, fetchurl, glibc, zlib
|
|
|
|
, enableStatic ? false
|
|
|
|
, sftpPath ? "/run/current-system/sw/libexec/sftp-server"
|
|
|
|
}:
|
2010-03-09 23:11:12 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-02 00:21:23 +00:00
|
|
|
name = "dropbear-2020.81";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2";
|
2020-11-02 00:21:23 +00:00
|
|
|
sha256 = "0fy5ma4cfc2pk25mcccc67b2mf1rnb2c06ilb7ddnxbpnc85s8s8";
|
2010-03-09 23:11:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontDisableStatic = enableStatic;
|
|
|
|
|
2017-04-14 10:59:28 +00:00
|
|
|
configureFlags = lib.optional enableStatic "LDFLAGS=-static";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2011-04-25 15:04:56 +00:00
|
|
|
CFLAGS = "-DSFTPSERVER_PATH=\\\"${sftpPath}\\\"";
|
2011-04-25 15:03:13 +00:00
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
# https://www.gnu.org/software/make/manual/html_node/Libraries_002fSearch.html
|
2013-06-18 20:53:19 +00:00
|
|
|
preConfigure = ''
|
2014-12-17 18:11:30 +00:00
|
|
|
makeFlags=VPATH=`cat $NIX_CC/nix-support/orig-libc`/lib
|
2013-06-18 20:53:19 +00:00
|
|
|
'';
|
|
|
|
|
2011-04-25 14:40:10 +00:00
|
|
|
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
|
|
|
|
];
|
|
|
|
|
2017-04-14 10:59:28 +00:00
|
|
|
buildInputs = [ zlib ] ++ lib.optionals enableStatic [ glibc.static zlib.static ];
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2015-10-17 10:24:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-10-02 07:58:50 +00:00
|
|
|
homepage = "https://matt.ucc.asn.au/dropbear/dropbear.html";
|
2016-02-02 16:19:58 +00:00
|
|
|
description = "A small footprint implementation of the SSH 2 protocol";
|
2015-10-17 10:24:17 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2016-06-11 00:38:32 +00:00
|
|
|
platforms = platforms.linux;
|
2010-03-09 23:11:12 +00:00
|
|
|
};
|
|
|
|
}
|