2022-09-30 00:10:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, glibc, zlib, libxcrypt
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2021-08-28 04:04:54 +00:00
|
|
|
, enableSCP ? false
|
2017-04-14 10:59:28 +00:00
|
|
|
, sftpPath ? "/run/current-system/sw/libexec/sftp-server"
|
|
|
|
}:
|
2010-03-09 23:11:12 +00:00
|
|
|
|
2021-08-28 04:04:54 +00: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 20:48:53 +00:00
|
|
|
pname = "dropbear";
|
2022-12-02 08:54:05 +00:00
|
|
|
version = "2022.83";
|
2010-03-09 23:11:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-01 20:48:53 +00:00
|
|
|
url = "https://matt.ucc.asn.au/dropbear/releases/dropbear-${version}.tar.bz2";
|
2022-12-02 08:54:05 +00:00
|
|
|
sha256 = "sha256-vFoSH/vJS1FxrV6+Ab5CdG1Qqnl8lUmkY5iUoWdJRDs=";
|
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
|
|
|
|
2021-08-28 04:04:54 +00:00
|
|
|
CFLAGS = lib.pipe (lib.attrNames dflags) [
|
|
|
|
(builtins.map (name: "-D${name}=\\\"${dflags.${name}}\\\""))
|
|
|
|
(lib.concatStringsSep " ")
|
|
|
|
];
|
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 = ''
|
2021-08-28 04:04:54 +00: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 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
|
|
|
|
];
|
|
|
|
|
2022-09-30 00:10:51 +00: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; {
|
2016-02-02 16:19:58 +00:00
|
|
|
description = "A small footprint implementation of the SSH 2 protocol";
|
2022-12-03 04:20:00 +00:00
|
|
|
homepage = "https://matt.ucc.asn.au/dropbear/dropbear.html";
|
|
|
|
changelog = "https://github.com/mkj/dropbear/raw/DROPBEAR_${version}/CHANGES";
|
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
|
|
|
};
|
|
|
|
}
|