about summary refs log tree commit diff
path: root/nixos/tests/keepalived.nix
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-02-16 22:36:32 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-02-16 22:36:32 +0000
commit95de1da4f385e85f649889a63ae0d9a07335c5a3 (patch)
tree413d0641669550cd6020b30188d161c2bc305d44 /nixos/tests/keepalived.nix
parent1d1f1553a842d2062104e313bdf3eadd4e7f16db (diff)
nixosTests.keepalived: fix eval (`maintainers` attribute)
Without the change test sfails to evaluate as:

    $ nix build --no-link -f. nixosTests.keepalived
    error:
       error: function 'makeTest' called with unexpected argument 'maintainers'
Diffstat (limited to 'nixos/tests/keepalived.nix')
-rw-r--r--nixos/tests/keepalived.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/keepalived.nix b/nixos/tests/keepalived.nix
index ce291514591fe..16564511d85dc 100644
--- a/nixos/tests/keepalived.nix
+++ b/nixos/tests/keepalived.nix
@@ -1,6 +1,6 @@
 import ./make-test-python.nix ({ pkgs, lib, ... }: {
   name = "keepalived";
-  maintainers = [ lib.maintainers.raitobezarius ];
+  meta.maintainers = [ lib.maintainers.raitobezarius ];
 
   nodes = {
     node1 = { pkgs, ... }: {