nixpkgs/pkgs/tools/security/jaeles/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
754 B
Nix
Raw Normal View History

2022-01-03 08:32:00 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jaeles";
2023-07-14 04:39:07 +02:00
version = "0.17.1";
2022-01-03 08:32:00 +01:00
src = fetchFromGitHub {
owner = "jaeles-project";
repo = pname;
rev = "beta-v${version}";
2023-07-14 04:39:07 +02:00
hash = "sha256-IGvIjO1nCilg2sPyScGTH5Zmv0rORlGwRv3NRxQk+aM=";
2022-01-03 08:32:00 +01:00
};
2023-07-14 04:39:07 +02:00
vendorHash = "sha256-/Ow2qdcFduZ2ZyUUfCqpZxSh9yy3+tI/2N9Wl1fKXVI=";
2022-01-03 08:32:00 +01:00
# Tests want to download signatures
doCheck = false;
meta = with lib; {
description = "Tool for automated Web application testing";
mainProgram = "jaeles";
2022-01-03 08:32:00 +01:00
homepage = "https://github.com/jaeles-project/jaeles";
2023-07-14 13:43:48 +02:00
changelog = "https://github.com/jaeles-project/jaeles/releases/tag/beta-v${version}";
2022-01-03 08:32:00 +01:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}