summary refs log tree commit diff
path: root/nixos/tests/boot-stage1.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-10 22:47:38 +0100
committerGitHub <noreply@github.com>2021-01-10 22:47:38 +0100
commitd085417683cedabb1eaf420ca0eb128ecfb3a175 (patch)
treea6a6b204e97902a530e5fe6aaf2fd1e0c8ecf505 /nixos/tests/boot-stage1.nix
parent07f8292f88f87222b67d2eea7665ab3115aa7512 (diff)
parent25bef2d8f91edfa80b86e1b777c520021a82131e (diff)
Merge pull request #108970 from xaverdh/pkgs-stdenv-lib
treewide: simplify pkgs.stdenv.lib -> pkgs.lib
Diffstat (limited to 'nixos/tests/boot-stage1.nix')
-rw-r--r--nixos/tests/boot-stage1.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/boot-stage1.nix b/nixos/tests/boot-stage1.nix
index cfb2ccb828563..ce86fc5f494df 100644
--- a/nixos/tests/boot-stage1.nix
+++ b/nixos/tests/boot-stage1.nix
@@ -158,5 +158,5 @@ import ./make-test-python.nix ({ pkgs, ... }: {
     machine.succeed('pgrep -a -f "^kcanary$"')
   '';
 
-  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ aszlig ];
+  meta.maintainers = with pkgs.lib.maintainers; [ aszlig ];
 })