{ lib, stdenv, fetchFromGitHub, makeWrapper, curl, whois, bind, mtr, jq, ipcalc, grepcidr, nmap, aha, }: stdenv.mkDerivation rec { pname = "asn"; version = "0.80.0"; src = fetchFromGitHub { owner = "nitefood"; repo = "asn"; tag = "v${version}"; hash = "sha256-GHzlYLBiWkayYvbkc/n1HLhL7RN1Q/AEjj+IDQBDTek="; }; nativeBuildInputs = [ makeWrapper ]; installPhase = '' install -Dv asn "$out/bin/asn" wrapProgram $out/bin/asn \ --prefix PATH : "${ lib.makeBinPath [ curl whois bind mtr jq ipcalc grepcidr nmap aha ] }" ''; meta = { description = "OSINT command line tool for investigating network data"; longDescription = '' ASN / RPKI validity / BGP stats / IPv4v6 / Prefix / URL / ASPath / Organization / IP reputation / IP geolocation / IP fingerprinting / Network recon / lookup API server / Web traceroute server ''; homepage = "https://github.com/nitefood/asn"; changelog = "https://github.com/nitefood/asn/releases/tag/v${version}"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ devhell ]; mainProgram = "asn"; }; }