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

48 lines
1.2 KiB
Nix
Raw Normal View History

2020-04-19 13:19:26 +00:00
{ lib
, python3
, openssl
# Many Salt modules require various Python modules to be installed,
# passing them in this array enables Salt to find them.
2020-04-19 13:19:26 +00:00
, extraInputs ? []
}:
2020-08-09 21:36:27 +00:00
python3.pkgs.buildPythonApplication rec {
2017-05-19 07:33:32 +00:00
pname = "salt";
2020-08-09 21:36:27 +00:00
version = "3001.1";
2020-08-09 21:36:27 +00:00
src = python3.pkgs.fetchPypi {
2017-05-19 07:33:32 +00:00
inherit pname version;
2020-08-09 21:36:27 +00:00
sha256 = "1g2sdcibir0zhldmngv1iyzlhh2adq9dqjc73grap3df5zcv9sz9";
};
2020-08-09 21:36:27 +00:00
propagatedBuildInputs = with python3.pkgs; [
2020-06-18 19:38:54 +00:00
distro
jinja2
markupsafe
2018-07-08 14:34:10 +00:00
msgpack
2020-06-18 19:38:54 +00:00
pycryptodomex
pyyaml
pyzmq
requests
tornado_4
] ++ 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;
2020-04-19 13:19:26 +00:00
meta = with lib; {
homepage = "https://saltstack.com/";
description = "Portable, distributed, remote execution and configuration management system";
maintainers = with maintainers; [ aneeshusa ];
license = licenses.asl20;
};
}