bscpkgs/pkgs/nanos6/jemalloc.nix
2023-10-02 10:57:53 +02:00

10 lines
190 B
Nix

{ jemalloc }:
jemalloc.overrideAttrs (old: {
configureFlags = old.configureFlags ++ [
"--with-jemalloc-prefix=nanos6_je_"
"--enable-stats"
];
hardeningDisable = [ "all" ];
})