-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
# Copyright 2026 Shota FUJI <pockawoooh@gmail.com>
# SPDX-License-Identifier: MIT
{
lib,
stdenv,
bash,
git,
}:
stdenv.mkDerivation {
name = "legit-test-repos";
src = lib.fileset.toSource {
root = ../../.;
fileset = lib.fileset.unions [
./create_repos.bash
./config.yaml
../../static
../../templates
];
};
postInstall = ''
mkdir -p $out/tests/k6/repos
cd $out/tests/k6/repos
bash $src/tests/k6/create_repos.bash
ln -s $src/tests/k6/config.yaml $out/tests/k6/config.yaml
ln -s $src/static $out/static
ln -s $src/templates $out/templates
'';
nativeBuildInputs = [
bash
git
];
}