fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / as / asn / package.nix
blob5d917507f9cd61efb7122c24f27495e4c8abe6a4
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   makeWrapper,
6   curl,
7   whois,
8   bind,
9   mtr,
10   jq,
11   ipcalc,
12   grepcidr,
13   nmap,
14   aha,
17 stdenv.mkDerivation rec {
18   pname = "asn";
19   version = "0.78.0";
21   src = fetchFromGitHub {
22     owner = "nitefood";
23     repo = "asn";
24     rev = "refs/tags/v${version}";
25     hash = "sha256-pXPc6cAPqvbECvP3v3Z1Og8jhIhh5zvXomZrxNX6KVI=";
26   };
28   nativeBuildInputs = [
29     makeWrapper
30   ];
32   installPhase = ''
33     install -Dv asn "$out/bin/asn"
35     wrapProgram $out/bin/asn \
36       --prefix PATH : "${
37         lib.makeBinPath [
38           curl
39           whois
40           bind
41           mtr
42           jq
43           ipcalc
44           grepcidr
45           nmap
46           aha
47         ]
48       }"
49   '';
51   meta = with lib; {
52     description = "OSINT command line tool for investigating network data";
53     longDescription = ''
54       ASN / RPKI validity / BGP stats / IPv4v6 / Prefix / URL / ASPath / Organization /
55       IP reputation / IP geolocation / IP fingerprinting / Network recon /
56       lookup API server / Web traceroute server
57     '';
58     homepage = "https://github.com/nitefood/asn";
59     changelog = "https://github.com/nitefood/asn/releases/tag/v${version}";
60     license = with licenses; [ mit ];
61     maintainers = with maintainers; [ devhell ];
62     mainProgram = "asn";
63   };