From 6c0d527b90675683d70403c01cc0c7fc20fc993c Mon Sep 17 00:00:00 2001 From: morguldir Date: Sat, 20 Apr 2024 04:18:23 +0200 Subject: [PATCH] Use jemalloc/hmalloc for cross builds Signed-off-by: morguldir --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1777b76a..54cc4a1b 100644 --- a/flake.nix +++ b/flake.nix @@ -394,7 +394,7 @@ name = "oci-image-${crossSystem}-jemalloc"; value = mkOciImage pkgsCrossStatic - self.packages.${system}.${binaryName}; + self.packages.${system}."${binaryName}-jemalloc"; } # An output for an OCI image based on that binary with hardened_malloc @@ -402,7 +402,7 @@ name = "oci-image-${crossSystem}-hmalloc"; value = mkOciImage pkgsCrossStatic - self.packages.${system}.${binaryName}; + self.packages.${system}."${binaryName}-hmalloc"; } ] )