mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
14 lines
169 B
Nix
14 lines
169 B
Nix
{
|
|
runTestOn,
|
|
}:
|
|
let
|
|
supportedSystems = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"i686-linux"
|
|
];
|
|
in
|
|
{
|
|
standard = runTestOn supportedSystems ./standard.nix;
|
|
}
|