about summary refs log tree commit diff
path: root/nixos/tests/mpv.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-30 11:26:18 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-05-12 22:29:28 -0300
commitaa7d79c0f6784e367c311d7ee656a428b6dcd006 (patch)
treed9deed5096e83ffcc59be582455cfb14e92fb022 /nixos/tests/mpv.nix
parentca916d0f614d2cf505e7fcb0f8a65c348d851111 (diff)
nixos/tests/mpv.nix: get rid of `with lib`
Diffstat (limited to 'nixos/tests/mpv.nix')
-rw-r--r--nixos/tests/mpv.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/tests/mpv.nix b/nixos/tests/mpv.nix
index a4803f3cb5b55..32a81cbe2495e 100644
--- a/nixos/tests/mpv.nix
+++ b/nixos/tests/mpv.nix
@@ -1,13 +1,11 @@
 import ./make-test-python.nix ({ lib, ... }:
 
-with lib;
-
 let
   port = toString 4321;
 in
 {
   name = "mpv";
-  meta.maintainers = with maintainers; [ zopieux ];
+  meta.maintainers = with lib.maintainers; [ zopieux ];
 
   nodes.machine =
     { pkgs, ... }: