node/tools/nix/benchmarkTools.nix
Antoine du Hamel c94047dfda
tools: extract Nix dependency lists to separate files
This should improve the readability, as well as the UX of cherry-picking
what dependency the user wants in their env.

PR-URL: https://github.com/nodejs/node/pull/60495
Reviewed-By: Jacob Smith <jacob@frende.me>
2025-11-08 12:53:47 +00:00

10 lines
108 B
Nix

{
pkgs ? import ./pkgs.nix { },
}:
[
pkgs.R
pkgs.rPackages.ggplot2
pkgs.rPackages.plyr
pkgs.wrk
]