mediawiki: Expose test variants individually
This fixes `nix-build -A mediawiki.tests`, which does not seem to recurse into nested attribute sets, but instead returns.
This commit is contained in:
parent
04e8e10104
commit
47428f1a16
1 changed files with 3 additions and 1 deletions
|
@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
|
|||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru.tests.mediawiki = nixosTests.mediawiki;
|
||||
passthru.tests = {
|
||||
inherit (nixosTests.mediawiki) mysql postgresql;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "The collaborative editing software that runs Wikipedia";
|
||||
|
|
Loading…
Reference in a new issue