forked from mirrors/nixpkgs
Merge pull request #177614 from fabaff/webanalyze
webanalyze: init at 0.3.6
This commit is contained in:
commit
07c545bacb
25
pkgs/tools/security/webanalyze/default.nix
Normal file
25
pkgs/tools/security/webanalyze/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -30628,6 +30628,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 {};
|
||||
|
|
Loading…
Reference in a new issue