From 26e1daaa43876c082d64f4ab9941602b99b5c14f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 6 Nov 2021 17:20:11 +0100 Subject: [PATCH] treewide: eliminate stdenv.lib usage It was breaking evaluation on Hydra. --- nixos/tests/seafile.nix | 2 +- nixos/tests/systemd-boot.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/seafile.nix b/nixos/tests/seafile.nix index 17862cff189e..70b9ba55457e 100644 --- a/nixos/tests/seafile.nix +++ b/nixos/tests/seafile.nix @@ -6,7 +6,7 @@ import ./make-test-python.nix ({ pkgs, ... }: }; in { name = "seafile"; - meta = with pkgs.stdenv.lib.maintainers; { + meta = with pkgs.lib.maintainers; { maintainers = [ kampfschlaefer schmittlauch ]; }; diff --git a/nixos/tests/systemd-boot.nix b/nixos/tests/systemd-boot.nix index ae3727afaf69..a6742606dbef 100644 --- a/nixos/tests/systemd-boot.nix +++ b/nixos/tests/systemd-boot.nix @@ -42,7 +42,7 @@ in # Check that specialisations create corresponding boot entries. specialisation = makeTest { name = "systemd-boot-specialisation"; - meta.maintainers = with pkgs.stdenv.lib.maintainers; [ lukegb ]; + meta.maintainers = with pkgs.lib.maintainers; [ lukegb ]; machine = { pkgs, lib, ... }: { imports = [ common ];