mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-11 10:16:01 +01:00
13 lines
149 B
Nix
13 lines
149 B
Nix
{
|
|
runTestOn,
|
|
}:
|
|
let
|
|
supportedSystems = [
|
|
"x86_64-linux"
|
|
"i686-linux"
|
|
];
|
|
in
|
|
{
|
|
standard = runTestOn supportedSystems ./standard.nix;
|
|
}
|