Merge #2711: add ansible-1.6.1
Conflicts (trivial): lib/maintainers.nix
This commit is contained in:
commit
e1775895a6
@ -46,6 +46,7 @@
|
|||||||
iElectric = "Domen Kozar <domen@dev.si>";
|
iElectric = "Domen Kozar <domen@dev.si>";
|
||||||
iyzsong = "Song Wenwu <iyzsong@gmail.com>";
|
iyzsong = "Song Wenwu <iyzsong@gmail.com>";
|
||||||
jcumming = "Jack Cummings <jack@mudshark.org>";
|
jcumming = "Jack Cummings <jack@mudshark.org>";
|
||||||
|
joamaki = "Jussi Maki <joamaki@gmail.com>";
|
||||||
joelteon = "Joel Taylor <me@joelt.io>";
|
joelteon = "Joel Taylor <me@joelt.io>";
|
||||||
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
||||||
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
||||||
|
@ -135,8 +135,7 @@ python.stdenv.mkDerivation (attrs // {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postFixup =
|
postFixup = attrs.postFixup or ''
|
||||||
''
|
|
||||||
wrapPythonPrograms
|
wrapPythonPrograms
|
||||||
|
|
||||||
# If a user installs a Python package, they probably also wants its
|
# If a user installs a Python package, they probably also wants its
|
||||||
|
37
pkgs/tools/system/ansible/default.nix
Normal file
37
pkgs/tools/system/ansible/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchurl, pythonPackages, python }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonPackage rec {
|
||||||
|
version = "1.6.1";
|
||||||
|
name = "ansible-${version}";
|
||||||
|
namePrefix = "";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/ansible/ansible/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "1iz1q2h0zll4qsxk0pndc59knasw663kv53sm21q57qz7lf30q9z";
|
||||||
|
};
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
sed -i "s,\/usr\/share\/ansible\/,$out/share/ansible," lib/ansible/constants.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
dontStrip = true;
|
||||||
|
dontPatchELF = true;
|
||||||
|
dontPatchShebangs = true;
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
|
paramiko jinja2 pyyaml httplib2 boto
|
||||||
|
];
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
wrapPythonProgramsIn $out/bin "$out $pythonPath"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://www.ansible.com";
|
||||||
|
description = "A simple automation tool";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.joamaki ];
|
||||||
|
platforms = platforms.linux; # Only tested on Linux
|
||||||
|
};
|
||||||
|
}
|
@ -3672,6 +3672,8 @@ let
|
|||||||
|
|
||||||
### DEVELOPMENT / TOOLS
|
### DEVELOPMENT / TOOLS
|
||||||
|
|
||||||
|
ansible = callPackage ../tools/system/ansible { };
|
||||||
|
|
||||||
antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { };
|
antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { };
|
||||||
|
|
||||||
antlr3 = callPackage ../development/tools/parsing/antlr { };
|
antlr3 = callPackage ../development/tools/parsing/antlr { };
|
||||||
|
Loading…
Reference in New Issue
Block a user