summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorGiacomo Longo <gabibbo97@gmail.com>2019-05-18 10:59:35 +0200
committerMario Rodas <marsam@users.noreply.github.com>2019-06-08 21:05:24 -0500
commit646ed20652e1d3a68a0f4bb26817e4814aa0caf2 (patch)
treeaa9b3fc81b6d6596793cc3fda87140143646dbab /pkgs/tools/admin
parenta2c2c385be3805bddc5ff34c66bc194b2bbc92a8 (diff)
ansible: 2.7.6 -> 2.8.1
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/ansible/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/pkgs/tools/admin/ansible/default.nix b/pkgs/tools/admin/ansible/default.nix
index 91fc2c50fcf6..85877f668e5e 100644
--- a/pkgs/tools/admin/ansible/default.nix
+++ b/pkgs/tools/admin/ansible/default.nix
@@ -3,7 +3,17 @@
{
ansible = with python3Packages; toPythonApplication ansible;
- ansible_2_7 = with python3Packages; toPythonApplication ansible;
+ ansible_2_8 = with python3Packages; toPythonApplication ansible;
+
+ ansible_2_7 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
+ pname = "ansible";
+ version = "2.7.10";
+
+ src = fetchurl {
+ url = "https://releases.ansible.com/ansible/${pname}-${version}.tar.gz";
+ sha256 = "15721d0bxymghxnlnknq43lszlxg3ybbcp2p5v424hhw6wg2v944";
+ };
+ }));
ansible_2_6 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
pname = "ansible";