python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / webanalyze / default.nix
blob1cbc22b1482d867b1085d9f7f03847ffe4a6f7bc
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "webanalyze";
8   version = "0.3.7";
10   src = fetchFromGitHub {
11     owner = "rverton";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-W7NgV50r/MNSF6+e0IR9C1dcg/k0w67GcTs0NTbhKBc=";
15   };
17   vendorSha256 = "sha256-kXtWYGsZUUhBNvkTOah3Z+ta118k6PXfpBx6MLr/pq0=";
19   meta = with lib; {
20     description = "Tool to uncover technologies used on websites";
21     homepage = "https://github.com/rverton/webanalyze";
22     license = licenses.mit;
23     maintainers = with maintainers; [ fab ];
24   };