2022-09-30 01:10:51 +01:00
|
|
|
{ lib, stdenv, fetchurl, glibc, zlib, libxcrypt
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2021-08-28 05:04:54 +01:00
|
|
|
, enableSCP ? false
|
2017-04-14 11:59:28 +01:00
|
|
|
, sftpPath ? "/run/current-system/sw/libexec/sftp-server"
|
|
|
|
}:
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2021-08-28 05:04:54 +01:00
|
|
|
let
|
|
|
|
# NOTE: DROPBEAR_PATH_SSH_PROGRAM is only necessary when enableSCP is true,
|
|
|
|
# but it is enabled here always anyways for consistency
|
|
|
|
dflags = {
|
|
|
|
SFTPSERVER_PATH = sftpPath;
|
|
|
|
DROPBEAR_PATH_SSH_PROGRAM = "${placeholder "out"}/bin/dbclient";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2010-03-09 23:11:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-01 21:48:53 +01:00
|
|
|
pname = "dropbear";
|
|
|
|
version = "2020.81";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-01 21:48:53 +01:00
|
|
|
url = "https://matt.ucc.asn.au/dropbear/releases/dropbear-${version}.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 11:59:28 +01:00
|
|
|
configureFlags = lib.optional enableStatic "LDFLAGS=-static";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2021-08-28 05:04:54 +01:00
|
|
|
CFLAGS = lib.pipe (lib.attrNames dflags) [
|
|
|
|
(builtins.map (name: "-D${name}=\\\"${dflags.${name}}\\\""))
|
|
|
|
(lib.concatStringsSep " ")
|
|
|
|
];
|
2011-04-25 16:03:13 +01:00
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
# https://www.gnu.org/software/make/manual/html_node/Libraries_002fSearch.html
|
2013-06-18 21:53:19 +01:00
|
|
|
preConfigure = ''
|
2021-08-28 05:04:54 +01:00
|
|
|
makeFlagsArray=(
|
|
|
|
VPATH=$(cat $NIX_CC/nix-support/orig-libc)/lib
|
|
|
|
PROGRAMS="${lib.concatStringsSep " " ([ "dropbear" "dbclient" "dropbearkey" "dropbearconvert" ] ++ lib.optionals enableSCP ["scp"])}"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = lib.optionalString enableSCP ''
|
|
|
|
ln -rs $out/bin/scp $out/bin/dbscp
|
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
|
|
|
|
];
|
|
|
|
|
2022-09-30 01:10:51 +01:00
|
|
|
buildInputs = [ zlib libxcrypt ] ++ lib.optionals enableStatic [ glibc.static zlib.static ];
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-02 08:58:50 +01: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 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
|
|
|
};
|
|
|
|
}
|