2017-04-14 11:59:28 +01: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 {
|
2017-07-27 13:55:38 +01:00
|
|
|
name = "dropbear-2017.75";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-06-18 21:53:19 +01:00
|
|
|
url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2";
|
2017-07-27 13:55:38 +01:00
|
|
|
sha256 = "1309cm2aw62n9m3h38prvgsqr8bj85hfasgnvwkd42cp3k5ivg3c";
|
2010-03-09 23:11:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontDisableStatic = enableStatic;
|
|
|
|
|
2017-04-14 11:59:28 +01:00
|
|
|
configureFlags = lib.optional enableStatic "LDFLAGS=-static";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2011-04-25 16:04:56 +01:00
|
|
|
CFLAGS = "-DSFTPSERVER_PATH=\\\"${sftpPath}\\\"";
|
2011-04-25 16:03:13 +01:00
|
|
|
|
2013-06-18 21:53:19 +01:00
|
|
|
# http://www.gnu.org/software/make/manual/html_node/Libraries_002fSearch.html
|
|
|
|
preConfigure = ''
|
2014-12-17 18:11:30 +00:00
|
|
|
makeFlags=VPATH=`cat $NIX_CC/nix-support/orig-libc`/lib
|
2013-06-18 21:53:19 +01:00
|
|
|
'';
|
|
|
|
|
2011-04-25 15:40:10 +01: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 11:59:28 +01:00
|
|
|
buildInputs = [ zlib ] ++ lib.optionals enableStatic [ glibc.static zlib.static ];
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2015-10-17 11:24:17 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://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 11:24:17 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2016-06-11 01:38:32 +01:00
|
|
|
platforms = platforms.linux;
|
2010-03-09 23:11:12 +00:00
|
|
|
};
|
|
|
|
}
|