3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/ansible/default.nix

13 lines
402 B
Nix
Raw Normal View History

2020-08-17 12:35:58 +01:00
{ python3Packages, fetchurl, fetchFromGitHub }:
2019-11-06 15:42:55 +00:00
rec {
2020-08-17 12:35:58 +01:00
ansible = ansible_2_10;
2021-05-12 03:39:05 +01:00
ansible_2_10 = python3Packages.toPythonApplication python3Packages.ansible-base;
2021-05-12 03:48:07 +01:00
# End of support 2021/10/02, End of life 2021/12/31
2019-11-06 15:42:55 +00:00
ansible_2_9 = python3Packages.toPythonApplication python3Packages.ansible;
ansible_2_8 = throw "Ansible 2.8 went end of life on 2021/01/03 and has subsequently been dropped";
}