diff --git a/pkgs/tools/admin/ansible/default.nix b/pkgs/tools/admin/ansible/default.nix index 63ef7646959..f2a56a8ab3b 100644 --- a/pkgs/tools/admin/ansible/default.nix +++ b/pkgs/tools/admin/ansible/default.nix @@ -3,6 +3,8 @@ rec { ansible = ansible_2_10; + ansible_2_11 = python3Packages.toPythonApplication python3Packages.ansible-core; + ansible_2_10 = python3Packages.toPythonApplication python3Packages.ansible-base; # End of support 2021/10/02, End of life 2021/12/31 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e9d2809ba21..376dbd1de67 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12623,7 +12623,8 @@ in ansible ansible_2_8 ansible_2_9 - ansible_2_10; + ansible_2_10 + ansible_2_11; ansible-lint = with python3.pkgs; toPythonApplication ansible-lint;