diff --git a/nix/pkgs/main/default.nix b/nix/pkgs/main/default.nix index 2d2e4ab8..5d31fe15 100644 --- a/nix/pkgs/main/default.nix +++ b/nix/pkgs/main/default.nix @@ -190,11 +190,4 @@ craneLib.buildPackage ( commonAttrs // { }; meta.mainProgram = commonAttrs.pname; - # Dynamically-linked jemalloc is broken on linux due to link-order problems, - # where the symbols are being resolved to libc malloc/free before jemalloc is - # loaded. This problem does not occur on darwin for unknown reasons. - meta.broken = - stdenv.isLinux && - !stdenv.hostPlatform.isStatic && - (featureEnabled "jemalloc"); })