fix(steps-guix): replace p11-kit with gnutls and add static-only guile-gnutls flow with no-so patch

This commit is contained in:
vxtls 2026-02-25 21:02:12 -05:00
parent 33bb0bb2ae
commit d4d6f6bc13
6 changed files with 170 additions and 1 deletions

View file

@ -0,0 +1,39 @@
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default
}
src_configure() {
local host_triplet
host_triplet="$(gcc -dumpmachine)"
PATH="${PREFIX}/bin:/usr/bin:/bin" \
PKG_CONFIG_PATH="${LIBDIR}/pkgconfig:${PREFIX}/lib/pkgconfig" \
./configure \
--prefix="${PREFIX}" \
--libdir="${LIBDIR}" \
--includedir="${PREFIX}/include" \
--host="${host_triplet}" \
--build="${host_triplet}" \
--enable-static \
--enable-shared \
--disable-doc \
--disable-tests \
--disable-tools \
--disable-libdane \
--without-p11-kit \
--without-idn \
--without-zlib \
--without-brotli \
--without-tpm \
--without-tpm2
}
src_compile() {
default_src_compile
}
src_install() {
default_src_install
}