tpm2-abrmd: support cross compilation

the build process requires gdbus-codegen, achieved by adding `glib` to `nativeBuildInputs`
This commit is contained in:
Colin
2023-04-07 03:56:37 +00:00
parent 4e7d68aa63
commit a08a67a563
+8 -1
View File
@@ -15,7 +15,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-l0ncCMsStaeFACRU3Bt6F1zyiOTGY6wOHewA4AD58Ww=";
};
nativeBuildInputs = [ pkg-config makeWrapper autoreconfHook autoconf-archive which ];
nativeBuildInputs = [
autoconf-archive
autoreconfHook
glib
makeWrapper
pkg-config
which
];
buildInputs = [ tpm2-tss glib dbus ];
nativeCheckInputs = [ cmocka ];