summary refs log tree commit diff
path: root/pkgs/tools/system/ansible/default.nix
diff options
context:
space:
mode:
authorAaron Bull Schaefer <aaron@elasticdog.com>2015-10-28 17:12:08 +0000
committerAaron Bull Schaefer <aaron@elasticdog.com>2015-10-28 17:12:08 +0000
commit0bd0f212157c6b0401af54be2f3c5262d76747fb (patch)
tree87edd2fa2d539576c8d23b96422415aa665b603f /pkgs/tools/system/ansible/default.nix
parent1437ac44de1bbe01f46380151773ff484bc8107a (diff)
downloadnixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.tar
nixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.tar.gz
nixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.tar.bz2
nixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.tar.lz
nixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.tar.xz
nixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.tar.zst
nixlib-0bd0f212157c6b0401af54be2f3c5262d76747fb.zip
ansible: 1.9.3 -> 1.9.4
Diffstat (limited to 'pkgs/tools/system/ansible/default.nix')
-rw-r--r--pkgs/tools/system/ansible/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix
index 0177eec9435e..0e72efb33bd2 100644
--- a/pkgs/tools/system/ansible/default.nix
+++ b/pkgs/tools/system/ansible/default.nix
@@ -1,13 +1,13 @@
 { windowsSupport ? true, stdenv, fetchurl, pythonPackages, python }:
 
 pythonPackages.buildPythonPackage rec {
-  version = "1.9.3";
+  version = "1.9.4";
   name = "ansible-${version}";
   namePrefix = "";
 
   src = fetchurl {
-    url = "http://releases.ansible.com/ansible/ansible-${version}.tar.gz";
-    sha256 = "1vgfsjqb5gbs30ymqgq3q2kxzn3fvh8680n14yj5c040zm1gd515";
+    url = "https://releases.ansible.com/ansible/${name}.tar.gz";
+    sha256 = "1qvgzb66nlyc2ncmgmqhzdk0x0p2px09967p1yypf5czwjn2yb4p";
   };
 
   prePatch = ''