summary refs log tree commit diff
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:29 -0300
commit98f50648847d0118359baecda8cdc9feda4bdffd (patch)
treef3c3c9db63baff553dde4684147c691f2d78ecfe
parent757b9f1be6abac8674679617d2cfc64616205c66 (diff)
downloadnixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.tar
nixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.tar.gz
nixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.tar.bz2
nixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.tar.lz
nixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.tar.xz
nixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.tar.zst
nixpkgs-98f50648847d0118359baecda8cdc9feda4bdffd.zip
nixos/tests/nzbhydra2.nix: get rid of `with lib`
-rw-r--r--nixos/tests/nzbhydra2.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/nixos/tests/nzbhydra2.nix b/nixos/tests/nzbhydra2.nix
index c82c756c3a1..e1d528cd952 100644
--- a/nixos/tests/nzbhydra2.nix
+++ b/nixos/tests/nzbhydra2.nix
@@ -1,10 +1,7 @@
 import ./make-test-python.nix ({ lib, ... }:
-
-  with lib;
-
   {
     name = "nzbhydra2";
-    meta.maintainers = with maintainers; [ jamiemagee ];
+    meta.maintainers = with lib.maintainers; [ jamiemagee ];
 
     nodes.machine = { pkgs, ... }: { services.nzbhydra2.enable = true; };