tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
matrix-conduit: add NixOS Test to passthru.tests
figsoda
3 years ago
fd95e78b
0893176e
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
servers
matrix-conduit
default.nix
+5
-1
pkgs/servers/matrix-conduit/default.nix
···
1
1
-
{ lib, rustPlatform, fetchFromGitLab, stdenv, darwin }:
1
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
26
+
27
27
+
passthru.tests = {
28
28
+
inherit (nixosTests) matrix-conduit;
29
29
+
};
26
30
27
31
meta = with lib; {
28
32
description = "A Matrix homeserver written in Rust";