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

49 lines
1.3 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";
2021-04-02 12:32:37 +00:00
version = "3003";
2020-08-09 21:36:27 +00:00
src = python3.pkgs.fetchPypi {
2017-05-19 07:33:32 +00:00
inherit pname version;
2021-04-02 12:32:37 +00:00
sha256 = "xGiXM9/nOM8ofjHLP908uNFgYpUgKxjY5m1I03LVync=";
};
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
2020-08-29 12:04:05 +00:00
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;
2020-04-19 13:19:26 +00:00
meta = with lib; {
homepage = "https://saltproject.io/";
changelog = "https://docs.saltproject.io/en/latest/topics/releases/${version}.html";
description = "Portable, distributed, remote execution and configuration management system";
maintainers = with maintainers; [ Flakebi ];
license = licenses.asl20;
};
}