forked from danio/nixos-matrix-modules
56a3a5985f
This commit ports some of the integrations tests from nixpkgs to be used for the matrix-synapse-next module.
8 lines
262 B
Nix
8 lines
262 B
Nix
{ nixpkgs, pkgs, matrix-lib, ... }:
|
|
{
|
|
nginx-pipeline-eval = pkgs.callPackage ./nginx-pipeline { inherit nixpkgs matrix-lib; };
|
|
|
|
synapse-postgres = pkgs.testers.runNixOSTest ./synapse-postgres;
|
|
synapse-sqlite = pkgs.testers.runNixOSTest ./synapse-sqlite;
|
|
}
|