about summary refs log tree commit diff
path: root/pkgs/tools/system/ansible
diff options
context:
space:
mode:
authorJoe Fiorini <joe@joefiorini.com>2014-09-22 10:12:07 -0400
committerJoe Fiorini <joe@joefiorini.com>2014-09-23 09:24:11 -0400
commite47b778109960397ee3c9fdd7e11c4242e54673c (patch)
tree83d84b49eaff7309790c658473e6883007a1a73b /pkgs/tools/system/ansible
parente81b9f4bd81849a384f1086968ea21f52ae045a3 (diff)
downloadnixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.tar
nixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.tar.gz
nixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.tar.bz2
nixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.tar.lz
nixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.tar.xz
nixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.tar.zst
nixlib-e47b778109960397ee3c9fdd7e11c4242e54673c.zip
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.
Diffstat (limited to 'pkgs/tools/system/ansible')
-rw-r--r--pkgs/tools/system/ansible/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix
index b3d40712926c..4bc41f5d04e4 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" ];
   };
 }