1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-04 23:02:38 +03:00
nixpkgs/nixos/tests/web-apps/pixelfed/default.nix

15 lines
211 B
Nix
Raw Permalink 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; };
}