Merge #96868: p11-kit: Add libtasn1 to nativeBuildInputs

Fixes e.g. pkgsCross.aarch64-multiplatform.p11-kit
This commit is contained in:
Vladimír Čunát 2020-09-01 13:01:47 +02:00
commit eccb4f23b6
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -16,7 +16,12 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev"];
outputBin = "dev";
nativeBuildInputs = [ autoreconfHook pkgconfig which ];
# for cross platform builds of p11-kit, libtasn1 in nativeBuildInputs
# provides the asn1Parser binary on the hostPlatform needed for building.
# at the same time, libtasn1 in buildInputs provides the libasn1 library
# to link against for the target platform.
# hence, libtasn1 is required in both native and build inputs.
nativeBuildInputs = [ autoreconfHook pkgconfig which libtasn1 ];
buildInputs = [ gettext libffi libiconv libtasn1 ];
autoreconfPhase = ''