ds: link the resultTree in the dataset

This commit is contained in:
2021-05-03 12:48:49 +02:00
parent 760787858a
commit 6937ffcfe9
14 changed files with 53 additions and 131 deletions

View File

@@ -6,17 +6,13 @@
, callPackage
}:
{
std = {
timetable = callPackage ./std/timetable.nix {};
};
rec {
osu = {
latency = callPackage ./osu/latency.nix {};
bw = callPackage ./osu/bw.nix {};
};
py = callPackage ./py.nix {};
perf.stat = callPackage ./perf/stat.nix {};
ctf.mode = callPackage ./ctf/mode.nix {};
std.timetable = py { script = ./std-timetable.py; compress = false; };
osu.latency = py { script = ./osu-latency.py; };
osu.bw = py { script = ./osu-bw.py; };
perf.stat = py { script = ./perf-stat.py; };
ctf.mode = py { script = ./ctf-mode.py; };
}