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
commit4e9cdcb64ee36d68acc2f6ab013c5aecb9526942 (patch)
treeba5236f496b9b5d98b9d93a44c19256445f69052
parent196debcf296540849a639becb2916f70d92544ea (diff)
downloadnixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.tar
nixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.tar.gz
nixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.tar.bz2
nixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.tar.lz
nixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.tar.xz
nixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.tar.zst
nixpkgs-4e9cdcb64ee36d68acc2f6ab013c5aecb9526942.zip
nixos/tests/ombi.nix: get rid of `with lib`
-rw-r--r--nixos/tests/ombi.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/tests/ombi.nix b/nixos/tests/ombi.nix
index ce3064ce6ac..fb3a37c978e 100644
--- a/nixos/tests/ombi.nix
+++ b/nixos/tests/ombi.nix
@@ -1,10 +1,8 @@
 import ./make-test-python.nix ({ lib, ... }:
 
-with lib;
-
 {
   name = "ombi";
-  meta.maintainers = with maintainers; [ woky ];
+  meta.maintainers = with lib.maintainers; [ woky ];
 
   nodes.machine =
     { pkgs, ... }: