mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 07:47:41 +00:00
dropbear: fix build with libxcrypt
This commit is contained in:
parent
67408deaa2
commit
f0f14f1db5
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, glibc, zlib
|
||||
{ lib, stdenv, fetchurl, glibc, zlib, libxcrypt
|
||||
, enableStatic ? stdenv.hostPlatform.isStatic
|
||||
, enableSCP ? false
|
||||
, sftpPath ? "/run/current-system/sw/libexec/sftp-server"
|
||||
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||
./pass-path.patch
|
||||
];
|
||||
|
||||
buildInputs = [ zlib ] ++ lib.optionals enableStatic [ glibc.static zlib.static ];
|
||||
buildInputs = [ zlib libxcrypt ] ++ lib.optionals enableStatic [ glibc.static zlib.static ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://matt.ucc.asn.au/dropbear/dropbear.html";
|
||||
|
Loading…
Reference in New Issue
Block a user