tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixosTests.buildbot: fix impure evaluation
zowoq
2 years ago
4ef91005
b5be7145
+2
-7
1 changed file
expand all
collapse all
unified
split
nixos
tests
buildbot.nix
+2
-7
nixos/tests/buildbot.nix
···
1
1
# Test ensures buildbot master comes up correctly and workers can connect
2
2
3
3
-
{ system ? builtins.currentSystem,
4
4
-
config ? {},
5
5
-
pkgs ? import ../.. { inherit system config; }
6
6
-
}:
7
7
-
8
8
-
import ./make-test-python.nix {
3
3
+
import ./make-test-python.nix ({ pkgs, ... }: {
9
4
name = "buildbot";
10
5
11
6
nodes = {
···
110
105
'';
111
106
112
107
meta.maintainers = with pkgs.lib.maintainers; [ ];
113
113
-
} {}
108
108
+
})