diff options
Diffstat (limited to 'tvix/cli/default.nix')
-rw-r--r-- | tvix/cli/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/cli/default.nix b/tvix/cli/default.nix index 4c4980be76a7..adc1ba08d1ac 100644 --- a/tvix/cli/default.nix +++ b/tvix/cli/default.nix @@ -76,6 +76,8 @@ let benchmark-cross-hello = (mkNixpkgsBenchmark "pkgsCross.aarch64-multiplatform.hello.outPath"); benchmark-firefox = (mkNixpkgsBenchmark "firefox.outPath"); benchmark-cross-firefox = (mkNixpkgsBenchmark "pkgsCross.aarch64-multiplatform.firefox.outPath"); + # Example used for benchmarking LightSpan::Delayed in commit bf286a54bc2ac5eeb78c3d5c5ae66e9af24d74d4 + benchmark-nixpkgs-attrnames = (mkExprBenchmark { expr = "builtins.length (builtins.attrNames (import ${pkgs.path} {}))"; description = "nixpkgs-attrnames"; }); }; in { |