ansible_2_18: add, fix version

This commit is contained in:
Maciej Krüger
2025-09-06 12:34:11 +02:00
parent e67134f8d7
commit b853712502
+11 -2
View File
@@ -6410,8 +6410,17 @@ with pkgs;
anybadge = with python3Packages; toPythonApplication anybadge;
ansible = ansible_2_18;
ansible_2_18 = python3Packages.toPythonApplication python3Packages.ansible-core;
ansible = ansible_2_19;
ansible_2_19 = python3Packages.toPythonApplication python3Packages.ansible-core;
ansible_2_18 = python3Packages.toPythonApplication (
python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
version = "2.18.8";
src = oldAttrs.src.override {
inherit version;
hash = "sha256-sHZiFalqR845kz0n4emWyivrVM8bOQfHQtNckTsfeM0=";
};
})
);
ansible_2_17 = python3Packages.toPythonApplication (
python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
version = "2.17.8";