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

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

27 lines
661 B
Nix
Raw Normal View History

2022-06-14 08:33:07 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "webanalyze";
2022-11-27 14:27:16 +00:00
version = "0.3.8";
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}";
2022-11-27 14:27:16 +00:00
hash = "sha256-1z4hi9a/OzBXIMBk1f0JpPMV/kRgBnTQAEygIZqV+1w=";
2022-06-14 08:33:07 +00:00
};
2022-11-27 15:10:14 +00:00
vendorHash = "sha256-kXtWYGsZUUhBNvkTOah3Z+ta118k6PXfpBx6MLr/pq0=";
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 ];
};
}