nixpkgs/nixos/tests/web-apps/movim/default.nix

15 lines
211 B
Nix
Raw Normal View History

{
system ? builtins.currentSystem,
handleTestOn,
}:
2024-03-22 23:49:50 +07:00
let
supportedSystems = [
"x86_64-linux"
"i686-linux"
];
2024-03-22 23:49:50 +07:00
in
{
standard = handleTestOn supportedSystems ./standard.nix { inherit system; };
}