summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorJoe Fiorini <joe@joefiorini.com>2014-09-22 10:13:21 -0400
committerJoe Fiorini <joe@joefiorini.com>2014-09-23 09:24:11 -0400
commitc9a49a6725a81c1638b515b1502934cc7fb935f5 (patch)
tree6a49f6c2bdc27e3c4e4876e94e40be33a34141cd /pkgs/tools/system
parente47b778109960397ee3c9fdd7e11c4242e54673c (diff)
downloadnixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.tar
nixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.tar.gz
nixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.tar.bz2
nixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.tar.lz
nixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.tar.xz
nixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.tar.zst
nixlib-c9a49a6725a81c1638b515b1502934cc7fb935f5.zip
Update to latest ansible version
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/ansible/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix
index 4bc41f5d04e4..4491bf7e4841 100644
--- a/pkgs/tools/system/ansible/default.nix
+++ b/pkgs/tools/system/ansible/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, pythonPackages, python }:
 
 pythonPackages.buildPythonPackage rec {
-  version = "1.6.10";
+  version = "1.7.1";
   name = "ansible-${version}";
   namePrefix = "";
-  
+
   src = fetchurl {
-    url = "https://github.com/ansible/ansible/archive/v${version}.tar.gz";
-    sha256 = "0j133353skzb6ydrqqgfkzbkkj1zaibl1x8sgl0arnfma8qky1g1";
+    url = "http://releases.ansible.com/ansible/ansible-${version}.tar.gz";
+    sha1 = "4f4be4d45f28f52e4ab0c063efb66c7b9f482a51";
   };
 
   prePatch = ''