1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-19 16:59:35 +01:00

[TMP]: Add some benchmarking tools

Not intended to be merged (at least definitely not as it is)
This commit is contained in:
regnat 2021-02-18 15:45:15 +01:00
parent bb06640971
commit 891390d76f
3 changed files with 71 additions and 1 deletions

12
thingToBench.nix Normal file
View file

@ -0,0 +1,12 @@
let
# pkgs = (builtins.getFlake "github:NixOS/nixpkgs?rev=ad0d20345219790533ebe06571f82ed6b034db31").legacyPackages.x86_64-linux;
pkgs = import <nixpkgs> {};
in
pkgs.runCommandNoCC "foo" {
buildInputs = [
pkgs.firefox
pkgs.pandoc
# pkgs.nixosTests.xfce
];
}
"echo bar > $out"