3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/webanalyze/default.nix

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

26 lines
571 B
Nix
Raw Normal View History

2022-06-14 09:33:07 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "webanalyze";
2022-08-11 20:47:17 +01:00
version = "0.3.7";
2022-06-14 09:33:07 +01:00
src = fetchFromGitHub {
owner = "rverton";
repo = pname;
rev = "v${version}";
2022-08-11 20:47:17 +01:00
hash = "sha256-W7NgV50r/MNSF6+e0IR9C1dcg/k0w67GcTs0NTbhKBc=";
2022-06-14 09:33:07 +01:00
};
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 ];
};
}