summary refs log tree commit diff
path: root/nixos/tests/boot-stage1.nix
diff options
context:
space:
mode:
authorDominik Xaver Hörl <hoe.dom@gmx.de>2021-01-10 20:08:30 +0100
committerDominik Xaver Hörl <hoe.dom@gmx.de>2021-01-10 20:12:06 +0100
commit25bef2d8f91edfa80b86e1b777c520021a82131e (patch)
tree2d966cc19fb94a1b9346722448dcaaf0563342cb /nixos/tests/boot-stage1.nix
parentf41dc35387a9b945eb3c50edadcfe07748ff22cb (diff)
downloadnixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.tar
nixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.tar.gz
nixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.tar.bz2
nixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.tar.lz
nixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.tar.xz
nixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.tar.zst
nixpkgs-25bef2d8f91edfa80b86e1b777c520021a82131e.zip
treewide: simplify pkgs.stdenv.lib -> pkgs.lib
The library does not depend on stdenv, that `stdenv` exposes `lib` is
an artifact of the ancient origins of nixpkgs.
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 cfb2ccb8285..ce86fc5f494 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 ];
 })