chore: install ca cert bundle

This commit is contained in:
Lars Sjöström 2025-03-09 21:10:05 +01:00
parent 55ac59e2b3
commit e49c2b22b5
No known key found for this signature in database
3 changed files with 10 additions and 20 deletions
pkgs/busybox

View file

@ -163,7 +163,7 @@ stdenv.mkDerivation rec {
CONFIG_TC n
# Set the path for the udhcpc script
CONFIG_UDHCPC_DEFAULT_SCRIPT "${outDispatchPath}"
CONFIG_UDHCPC_DEFAULT_SCRIPT "/usr/share/busybox/"
${extraConfig}
CONFIG_CROSS_COMPILER_PREFIX "${stdenv.cc.targetPrefix}"
@ -181,15 +181,6 @@ stdenv.mkDerivation rec {
makeFlags = [ "SKIP_STRIP=y" ];
postInstall = ''
sed -e '
1 a busybox() { '$out'/bin/busybox "$@"; }\
logger() { '$out'/bin/logger "$@"; }\
' ${debianDispatcherScript} > ${outDispatchPath}
chmod 555 ${outDispatchPath}
HOST_PATH=$out/bin patchShebangs --host ${outDispatchPath}
'';
strictDeps = true;
depsBuildBuild = [ buildPackages.stdenv.cc ];