ansible_2_2: windows support off by default

this was accidentally enabled when moving the expression.
This commit is contained in:
Frederik Rietdijk 2017-02-11 13:26:52 +01:00
parent 8ea925b240
commit 1ba17987f7
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,8 @@
, six , six
, netaddr , netaddr
, dns , dns
, pywinrm , windowsSupport ? false
, pywinrm ? null
}: }:
let let
@ -44,7 +45,6 @@ in buildPythonPackage rec {
dontStrip = true; dontStrip = true;
dontPatchELF = true; dontPatchELF = true;
dontPatchShebangs = false; dontPatchShebangs = false;
windowsSupport = true;
propagatedBuildInputs = [ pycrypto paramiko jinja pyyaml httplib2 propagatedBuildInputs = [ pycrypto paramiko jinja pyyaml httplib2
boto six netaddr dns ] ++ lib.optional windowsSupport pywinrm; boto six netaddr dns ] ++ lib.optional windowsSupport pywinrm;