stargazer: Add nixosTests.stargazer to passthru.tests

This commit is contained in:
gaykitty
2023-11-26 11:02:02 -05:00
parent 88273849a6
commit fe5f6ab623
@@ -5,6 +5,7 @@
, installShellFiles
, scdoc
, Security
, nixosTests
}:
rustPlatform.buildRustPackage rec {
@@ -22,6 +23,10 @@ rustPlatform.buildRustPackage rec {
doCheck = false; # Uses external testing framework that requires network
passthru.tests = {
basic-functionality = nixosTests.stargazer;
};
nativeBuildInputs = [ installShellFiles scdoc ];
buildInputs = lib.optional stdenv.isDarwin Security;