about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/jaeles/default.nix
blob: 5ab635b35ac281f610a20b7fa1496f1ff12e5cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "jaeles";
  version = "0.17.1";

  src = fetchFromGitHub {
    owner = "jaeles-project";
    repo = pname;
    rev = "beta-v${version}";
    hash = "sha256-IGvIjO1nCilg2sPyScGTH5Zmv0rORlGwRv3NRxQk+aM=";
  };

  vendorHash = "sha256-/Ow2qdcFduZ2ZyUUfCqpZxSh9yy3+tI/2N9Wl1fKXVI=";

  # Tests want to download signatures
  doCheck = false;

  meta = with lib; {
    description = "Tool for automated Web application testing";
    homepage = "https://github.com/jaeles-project/jaeles";
    changelog = "https://github.com/jaeles-project/jaeles/releases/tag/beta-v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}