Merge pull request #107606 from lopsided98/openssh-cross
openssh: fix cross-compilation
This commit is contained in:
commit
d6eebc0cc3
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
|
, pkgs
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, zlib
|
, zlib
|
||||||
|
@ -68,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ]
|
nativeBuildInputs = [ pkgconfig ]
|
||||||
++ optional (hpnSupport || withGssapiPatches) autoreconfHook
|
++ optional (hpnSupport || withGssapiPatches) autoreconfHook
|
||||||
++ optional withKerberos kerberos.dev;
|
++ optional withKerberos pkgs.kerberos.dev;
|
||||||
buildInputs = [ zlib openssl libedit pam ]
|
buildInputs = [ zlib openssl libedit pam ]
|
||||||
++ optional withFIDO libfido2
|
++ optional withFIDO libfido2
|
||||||
++ optional withKerberos kerberos;
|
++ optional withKerberos kerberos;
|
||||||
|
|
Loading…
Reference in a new issue