Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.5 KiB
Nix
61 lines
1.5 KiB
Nix
{
|
|
fetchPypi,
|
|
lib,
|
|
python3Packages,
|
|
xorg,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "exegol";
|
|
version = "4.3.11";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-+LnZSFRW7EvG+cPwMStgO6qD4AjOGkLzCarXBrW3Aak=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ pdm-backend ];
|
|
|
|
pythonRelaxDeps = [
|
|
"rich"
|
|
"argcomplete"
|
|
];
|
|
|
|
dependencies =
|
|
with python3Packages;
|
|
[
|
|
pyyaml
|
|
gitpython
|
|
docker
|
|
requests
|
|
rich
|
|
argcomplete
|
|
tzlocal
|
|
]
|
|
++ [ xorg.xhost ];
|
|
|
|
doCheck = true;
|
|
|
|
pythonImportsCheck = [ "exegol" ];
|
|
|
|
meta = {
|
|
description = "Fully featured and community-driven hacking environment";
|
|
longDescription = ''
|
|
Exegol is a community-driven hacking environment, powerful and yet
|
|
simple enough to be used by anyone in day to day engagements. Exegol is
|
|
the best solution to deploy powerful hacking environments securely,
|
|
easily, professionally. Exegol fits pentesters, CTF players, bug bounty
|
|
hunters, researchers, beginners and advanced users, defenders, from
|
|
stylish macOS users and corporate Windows pros to UNIX-like power users.
|
|
'';
|
|
homepage = "https://github.com/ThePorgs/Exegol";
|
|
changelog = "https://github.com/ThePorgs/Exegol/releases/tag/${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "exegol";
|
|
maintainers = with lib.maintainers; [
|
|
_0b11stan
|
|
charB66
|
|
];
|
|
};
|
|
}
|