summary refs log tree commit diff
path: root/nixos/tests/systemd-boot.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2021-11-06 17:20:11 +0100
committerVladimír Čunát <v@cunat.cz>2021-11-06 17:20:11 +0100
commit26e1daaa43876c082d64f4ab9941602b99b5c14f (patch)
tree39d3159f8b41c8cd4a7fc5b294c88d36af122a00 /nixos/tests/systemd-boot.nix
parentc6c29d5845a0f4691e019471b60033c26a5a6d53 (diff)
downloadnixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.tar
nixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.tar.gz
nixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.tar.bz2
nixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.tar.lz
nixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.tar.xz
nixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.tar.zst
nixpkgs-26e1daaa43876c082d64f4ab9941602b99b5c14f.zip
treewide: eliminate stdenv.lib usage
It was breaking evaluation on Hydra.
Diffstat (limited to 'nixos/tests/systemd-boot.nix')
-rw-r--r--nixos/tests/systemd-boot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/systemd-boot.nix b/nixos/tests/systemd-boot.nix
index ae3727afaf6..a6742606dbe 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 ];