summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/webanalyze/default.nix
blob: b61afb16fb676e975ada99738416d9d4874a03e3 (plain)
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
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "webanalyze";
  version = "0.3.6";

  src = fetchFromGitHub {
    owner = "rverton";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-r5HIXh0mKCZmzOOAKThNUPtJLsTYvnVE8FYA6vV5xjg=";
  };

  vendorSha256 = "sha256-kXtWYGsZUUhBNvkTOah3Z+ta118k6PXfpBx6MLr/pq0=";

  meta = with lib; {
    description = "Tool to uncover technologies used on websites";
    homepage = "https://github.com/rverton/webanalyze";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}