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

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

28 lines
693 B
Nix
Raw Normal View History

2022-06-14 08:33:07 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "webanalyze";
2023-12-25 03:20:00 +00:00
version = "0.4.1";
2022-06-14 08:33:07 +00:00
src = fetchFromGitHub {
owner = "rverton";
repo = pname;
2022-11-27 15:10:14 +00:00
rev = "refs/tags/v${version}";
2023-12-25 03:20:00 +00:00
hash = "sha256-rnNbEPlbye0gjUamwq1xjFM/4g0eEHsGOAZWziEqxwM=";
2022-06-14 08:33:07 +00:00
};
2023-10-23 16:55:49 +00:00
vendorHash = "sha256-XPOsC+HoLytgv1fhAaO5HYSvuOP6OhjLyOYTfiD64QI=";
2022-06-14 08:33:07 +00:00
meta = with lib; {
description = "Tool to uncover technologies used on websites";
homepage = "https://github.com/rverton/webanalyze";
2022-11-27 15:10:14 +00:00
changelog = "https://github.com/rverton/webanalyze/releases/tag/v${version}";
2022-06-14 08:33:07 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
2023-11-23 02:51:17 +00:00
mainProgram = "webanalyze";
2022-06-14 08:33:07 +00:00
};
}