webanalyze: init at 0.3.6

This commit is contained in:
Fabian Affolter 2022-06-14 10:33:07 +02:00
parent c01fa626c8
commit d12ff55725
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -30615,6 +30615,8 @@ with pkgs;
wayvnc = callPackage ../applications/networking/remote/wayvnc { };
webanalyze = callPackage ../tools/security/webanalyze { };
webcamoid = libsForQt5.callPackage ../applications/video/webcamoid { };
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};