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

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

29 lines
636 B
Nix
Raw Normal View History

2022-01-03 08:32:00 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jaeles";
version = "0.17";
src = fetchFromGitHub {
owner = "jaeles-project";
repo = pname;
rev = "beta-v${version}";
hash = "sha256-IGB+TYMOOO7fvRfDe9y+JSXuDSMDVJK+N4hS+kezG48=";
};
2022-01-05 04:41:48 +01:00
vendorSha256 = "sha256-R2cP5zNuGUs0/KeaGhbQm1m5gVBVhpcFrS/jsph3EBk=";
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";
homepage = "https://github.com/jaeles-project/jaeles";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}