nixpkgs/pkgs/tools/admin/salt/default.nix

60 lines
1.6 KiB
Nix
Raw Normal View History

{
2017-05-19 07:33:32 +00:00
stdenv, python2Packages, openssl,
# Many Salt modules require various Python modules to be installed,
# passing them in this array enables Salt to find them.
extraInputs ? []
}:
let
# Use tornado-4.x until https://github.com/saltstack/salt/issues/45790 is resolved
tornado = python2Packages.tornado.overridePythonAttrs (oldAttrs: rec {
version = "4.5.3";
name = "${oldAttrs.pname}-${version}";
src = oldAttrs.src.override {
inherit version;
sha256 = "02jzd23l4r6fswmwxaica9ldlyc2p6q8dk6dyff7j58fmdzf853d";
};
});
in
2016-10-17 15:28:04 +00:00
python2Packages.buildPythonApplication rec {
2017-05-19 07:33:32 +00:00
pname = "salt";
version = "2017.7.4";
2017-05-19 07:33:32 +00:00
src = python2Packages.fetchPypi {
inherit pname version;
sha256 = "15xfvclk3ns8vk17j7bfy4alq7ab5x3y3jnpqzp5583bfyak0mqx";
};
2016-10-17 15:28:04 +00:00
propagatedBuildInputs = with python2Packages; [
futures
jinja2
markupsafe
2018-02-25 07:31:46 +00:00
msgpack-python
pycrypto
pyyaml
pyzmq
requests
tornado
] ++ extraInputs;
patches = [ ./fix-libcrypto-loading.patch ];
postPatch = ''
substituteInPlace "salt/utils/rsax931.py" \
--subst-var-by "libcrypto" "${openssl.out}/lib/libcrypto.so"
'';
# The tests fail due to socket path length limits at the very least;
# possibly there are more issues but I didn't leave the test suite running
# as is it rather long.
doCheck = false;
meta = with stdenv.lib; {
homepage = https://saltstack.com/;
description = "Portable, distributed, remote execution and configuration management system";
maintainers = with maintainers; [ aneeshusa ];
license = licenses.asl20;
};
}