3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/ansible/default.nix

38 lines
967 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages, python }:
2014-05-21 08:36:29 +01:00
pythonPackages.buildPythonPackage rec {
2015-05-19 22:27:25 +01:00
version = "1.9.1";
name = "ansible-${version}";
2014-05-21 08:36:29 +01:00
namePrefix = "";
2014-09-22 15:13:21 +01:00
2014-05-21 08:36:29 +01:00
src = fetchurl {
2014-09-22 15:13:21 +01:00
url = "http://releases.ansible.com/ansible/ansible-${version}.tar.gz";
2015-05-19 22:27:25 +01:00
sha256 = "a6f975d565723765a4d490ff40cede96833a745f38908def4950a0075f1973f5";
2014-05-21 08:36:29 +01:00
};
prePatch = ''
2015-02-26 10:51:52 +00:00
sed -i "s,\/usr\/share\/ansible\/,$out/share/ansible," lib/ansible/constants.py
2014-05-21 08:36:29 +01:00
'';
doCheck = false;
dontStrip = true;
dontPatchELF = true;
dontPatchShebangs = true;
2014-05-21 08:36:29 +01:00
propagatedBuildInputs = with pythonPackages; [
paramiko jinja2 pyyaml httplib2 boto six
2014-05-21 08:36:29 +01:00
];
postFixup = ''
wrapPythonProgramsIn $out/bin "$out $pythonPath"
'';
meta = with stdenv.lib; {
2014-05-21 08:36:29 +01:00
homepage = "http://www.ansible.com";
description = "A simple automation tool";
license = licenses.gpl3;
maintainers = [ maintainers.joamaki ];
platforms = platforms.linux ++ [ "x86_64-darwin" ];
2014-05-21 08:36:29 +01:00
};
}