forked from Fediversity/Fediversity
14 lines
349 B
Nix
14 lines
349 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
sources ? import ../npins,
|
|
pkgs ? import sources.nixpkgs {
|
|
inherit system;
|
|
},
|
|
}:
|
|
{
|
|
tests = {
|
|
mastodon = import ./tests/mastodon.nix { inherit pkgs; };
|
|
pixelfed-garage = import ./tests/pixelfed-garage.nix { inherit pkgs; };
|
|
peertube = import ./tests/peertube.nix { inherit pkgs; };
|
|
};
|
|
}
|