Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

matrix-conduit: add NixOS Test to passthru.tests

figsoda fd95e78b 0893176e

+5 -1
+5 -1
pkgs/servers/matrix-conduit/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitLab, stdenv, darwin }: 1 + { lib, rustPlatform, fetchFromGitLab, stdenv, darwin, nixosTests }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "matrix-conduit"; ··· 23 23 24 24 # tests failed on x86_64-darwin with SIGILL: illegal instruction 25 25 doCheck = !(stdenv.isx86_64 && stdenv.isDarwin); 26 + 27 + passthru.tests = { 28 + inherit (nixosTests) matrix-conduit; 29 + }; 26 30 27 31 meta = with lib; { 28 32 description = "A Matrix homeserver written in Rust";