mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
650d14be8d
svn path=/nixos/trunk/; revision=26990
11 lines
222 B
Nix
11 lines
222 B
Nix
{ nixpkgs
|
|
, system ? builtins.currentSystem
|
|
, networkExpr
|
|
}:
|
|
|
|
let nodes = import networkExpr; in
|
|
|
|
with import ../../../../lib/testing.nix { inherit nixpkgs system; };
|
|
|
|
(complete { inherit nodes; testScript = ""; }).driver
|