nixos/tests/terminal-emulators: fix nonexistant stdenv.lib in maintainers

This commit is contained in:
Jamie McClymont 2022-03-24 00:19:15 +13:00
parent a701c09286
commit 823c7cac38

View File

@ -112,7 +112,7 @@ let tests = {
in mapAttrs (name: { pkg, executable ? name, cmd ? "SHELL=$command ${executable}", colourTest ? true, pinkValue ? "#FF0087", kill ? false }: makeTest in mapAttrs (name: { pkg, executable ? name, cmd ? "SHELL=$command ${executable}", colourTest ? true, pinkValue ? "#FF0087", kill ? false }: makeTest
{ {
name = "terminal-emulator-${name}"; name = "terminal-emulator-${name}";
meta = with pkgs.stdenv.lib.maintainers; { meta = with pkgs.lib.maintainers; {
maintainers = [ jjjollyjim ]; maintainers = [ jjjollyjim ];
}; };