openapi-tui: Fix gcc15 build (#479002)

This commit is contained in:
Matthias Beyer
2026-01-11 12:09:27 +00:00
committed by GitHub
+10 -2
View File
@@ -3,6 +3,7 @@
rustPlatform,
fetchFromGitHub,
pkg-config,
oniguruma,
openssl,
}:
@@ -19,10 +20,17 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-911ARjYvTNqLVVUWxATbtiKXOC9AqalFvDvp/qAef1Q=";
env.OPENSSL_NO_VENDOR = true;
# Do not vendor Oniguruma
env = {
RUSTONIG_SYSTEM_LIBONIG = true;
OPENSSL_NO_VENDOR = true;
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
buildInputs = [
openssl
oniguruma
];
meta = {
description = "Terminal UI to list, browse and run APIs defined with openapi spec";