1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 17:56:53 +03:00
nixpkgs/nixos/tests/web-apps/pixelfed/default.nix

15 lines
211 B
Nix
Raw Normal View History

{
system ? builtins.currentSystem,
handleTestOn,
}:
2023-03-25 17:02:52 +01:00
let
supportedSystems = [
"x86_64-linux"
"i686-linux"
];
2023-03-25 17:02:52 +01:00
in
{
standard = handleTestOn supportedSystems ./standard.nix { inherit system; };
}