tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ansible: update from 1.7.1 to 1.7.2
Aristid Breitkreuz
11 years ago
352c310b
a97e1ee5
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
system
ansible
default.nix
+2
-2
pkgs/tools/system/ansible/default.nix
···
1
1
{ stdenv, fetchurl, pythonPackages, python }:
2
2
3
3
pythonPackages.buildPythonPackage rec {
4
4
-
version = "1.7.1";
4
4
+
version = "1.7.2";
5
5
name = "ansible-${version}";
6
6
namePrefix = "";
7
7
8
8
src = fetchurl {
9
9
url = "http://releases.ansible.com/ansible/ansible-${version}.tar.gz";
10
10
-
sha1 = "4f4be4d45f28f52e4ab0c063efb66c7b9f482a51";
10
10
+
sha256 = "1b4qhh6a8z18q7lfa7laxb3p0f7sacvv7nlbr2lix0vznhbffz51";
11
11
};
12
12
13
13
prePatch = ''