From e47b778109960397ee3c9fdd7e11c4242e54673c Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Mon, 22 Sep 2014 10:12:07 -0400 Subject: [PATCH] Allow ansible to install on darwin platforms I am using this package on my Yosemite install of OS X and it works great. It also pretty closely follows the Homebrew recipe that most OS X users use, so I think we can open it up to other OS X users. --- pkgs/tools/system/ansible/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix index b3d40712926..4bc41f5d04e 100644 --- a/pkgs/tools/system/ansible/default.nix +++ b/pkgs/tools/system/ansible/default.nix @@ -32,6 +32,6 @@ pythonPackages.buildPythonPackage rec { description = "A simple automation tool"; license = licenses.gpl3; maintainers = [ maintainers.joamaki ]; - platforms = platforms.linux; # Only tested on Linux + platforms = platforms.linux ++ [ "x86_64-darwin" ]; }; }