3e2acf8aff
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
12 lines
402 B
Nix
12 lines
402 B
Nix
{ python3Packages, fetchurl, fetchFromGitHub }:
|
|
|
|
rec {
|
|
ansible = ansible_2_10;
|
|
|
|
ansible_2_10 = python3Packages.toPythonApplication python3Packages.ansible-base;
|
|
|
|
# End of support 2021/10/02, End of life 2021/12/31
|
|
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";
|
|
}
|