mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ansible_2_5: init at 2.5.0
This commit is contained in:
parent
a7af5d4f88
commit
cf45cfc58c
40
pkgs/tools/admin/ansible/2.5.nix
Normal file
40
pkgs/tools/admin/ansible/2.5.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, pythonPackages
|
||||
, windowsSupport ? false
|
||||
}:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pname = "ansible";
|
||||
version = "2.5.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://releases.ansible.com/ansible/${name}.tar.gz";
|
||||
sha256 = "1p76d1pv89yhi8q05jas5gskkd1anjmqqvaks8nynmal1x5xwkki";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
sed -i "s,/usr/,$out," lib/ansible/constants.py
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
dontStrip = true;
|
||||
dontPatchELF = true;
|
||||
dontPatchShebangs = false;
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
pycrypto paramiko jinja2 pyyaml httplib2 boto six netaddr dnspython
|
||||
] ++ stdenv.lib.optional windowsSupport pywinrm;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.ansible.com;
|
||||
description = "A simple automation tool";
|
||||
license = with licenses; [ gpl3 ];
|
||||
maintainers = with maintainers; [
|
||||
jgeerds
|
||||
joamaki
|
||||
];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
@ -7425,6 +7425,7 @@ with pkgs;
|
||||
ansible_2_2 = callPackage ../tools/admin/ansible/2.2.nix {};
|
||||
ansible_2_3 = callPackage ../tools/admin/ansible/2.3.nix {};
|
||||
ansible_2_4 = callPackage ../tools/admin/ansible/2.4.nix {};
|
||||
ansible_2_5 = callPackage ../tools/admin/ansible/2.5.nix {};
|
||||
ansible = ansible_2_4;
|
||||
ansible2 = ansible_2_4;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user