about summary refs log tree commit diff
path: root/nixos/tests/pomerium.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-02 20:53:00 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-02 20:53:00 +0200
commitef13dc6637cbe329257770d9f72f0f96c84f6de7 (patch)
tree206c5313ebb3c2238fa3f3c0510bba2b8e481d55 /nixos/tests/pomerium.nix
parent2b7387487f8a85f3cf57e1a596fc3b68ac9c5f0f (diff)
nixos/tests/pomerium: stdenv.lib → lib
Just to be safe doesn't seem to have broken any evaluation checks so far.
Diffstat (limited to 'nixos/tests/pomerium.nix')
-rw-r--r--nixos/tests/pomerium.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/pomerium.nix b/nixos/tests/pomerium.nix
index 933614bb7d8ac..531b6212711f5 100644
--- a/nixos/tests/pomerium.nix
+++ b/nixos/tests/pomerium.nix
@@ -1,6 +1,6 @@
-import ./make-test-python.nix ({ pkgs, ... }: {
+import ./make-test-python.nix ({ pkgs, lib, ... }: {
   name = "pomerium";
-  meta = with pkgs.stdenv.lib.maintainers; {
+  meta = with lib.maintainers; {
     maintainers = [ lukegb ];
   };