nixos/malloc: unpin LLVM for Scudo

This was using `llvmPackages_latest` before that became an alias.
This commit is contained in:
Emily 2025-08-09 21:56:22 +01:00
parent 529489ffd3
commit 01e8f570c6

View File

@ -52,7 +52,7 @@ let
or (throw "scudo not supported on ${pkgs.stdenv.hostPlatform.system}");
in
{
libPath = "${pkgs.llvmPackages_14.compiler-rt}/lib/linux/libclang_rt.scudo-${systemPlatform}.so";
libPath = "${pkgs.llvmPackages.compiler-rt}/lib/linux/libclang_rt.scudo-${systemPlatform}.so";
description = ''
A user-mode allocator based on LLVM Sanitizers CombinedAllocator,
which aims at providing additional mitigations against heap based