zsh: add nixosTests zsh-history & oh-my-zsh to passthru.tests

This commit is contained in:
Robert Scott 2022-04-30 22:39:45 +01:00 committed by Artturin
parent 153d89edda
commit 9b10f9a0c4

View File

@ -11,7 +11,9 @@
, ncurses , ncurses
, pcre , pcre
, pkg-config , pkg-config
, buildPackages }: , buildPackages
, nixosTests
}:
let let
version = "5.9"; version = "5.9";
@ -143,5 +145,8 @@ EOF
passthru = { passthru = {
shellPath = "/bin/zsh"; shellPath = "/bin/zsh";
tests = {
inherit (nixosTests) zsh-history oh-my-zsh;
};
}; };
} }