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.
This commit is contained in:
Joe Fiorini
2014-09-23 09:24:11 -04:00
parent e81b9f4bd8
commit e47b778109
+1 -1
View File
@@ -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" ];
};
}