linuxPackages.opensnitch-ebpf: add --strip-debug flag to llvm-strip (#417717)

This commit is contained in:
K900
2025-06-21 16:09:44 +03:00
committed by GitHub
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
postFixup = ''
# reduces closure size significantly (fixes https://github.com/NixOS/nixpkgs/issues/391351)
for file in $out/etc/opensnitchd/*.o; do
llvm-strip $file
llvm-strip --strip-debug $file
done
'';