1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/dropbear/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, glibc, zlib
, enableStatic ? false
, sftpPath ? "/run/current-system/sw/libexec/sftp-server"
}:
stdenv.mkDerivation rec {
2017-07-27 13:55:38 +01:00
name = "dropbear-2017.75";
src = fetchurl {
url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2";
2017-07-27 13:55:38 +01:00
sha256 = "1309cm2aw62n9m3h38prvgsqr8bj85hfasgnvwkd42cp3k5ivg3c";
};
dontDisableStatic = enableStatic;
configureFlags = lib.optional enableStatic "LDFLAGS=-static";
CFLAGS = "-DSFTPSERVER_PATH=\\\"${sftpPath}\\\"";
# http://www.gnu.org/software/make/manual/html_node/Libraries_002fSearch.html
preConfigure = ''
makeFlags=VPATH=`cat $NIX_CC/nix-support/orig-libc`/lib
'';
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 ] ++ lib.optionals enableStatic [ glibc.static zlib.static ];
2015-10-17 11:24:17 +01:00
meta = with stdenv.lib; {
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;
};
}