pietrasanta-traceroute: init at `0.0.5-unstable-2023-11-28` (#313400)

authored by nicoo and committed by GitHub d62141d0 f15b763c

+40
+40
pkgs/by-name/pi/pietrasanta-traceroute/package.nix
···
··· 1 + { lib 2 + , fetchFromGitHub 3 + , unstableGitUpdater 4 + , stdenv 5 + , openssl 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "pietrasanta-traceroute"; 10 + version = "0.0.5-unstable-2023-11-28"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "catchpoint"; 14 + repo = "Networking.traceroute"; 15 + rev = "c870c7bd7bafeab815f8564a67a281892c3a6230"; 16 + hash = "sha256-CKqm8b6qNLEpso25+uTvtiR/hFMKJzuXUZkQ7lWzGd8="; 17 + }; 18 + passthru.updateScript = unstableGitUpdater { }; 19 + 20 + buildInputs = [ openssl ]; 21 + makeFlags = [ "prefix=$(out)" ]; 22 + 23 + meta = with lib; { 24 + description = "ECN-aware version of traceroute"; 25 + longDescription = '' 26 + An enhanced version of Dmitry Butskoy's traceroute, developed by Catchpoint. 27 + - Support for "TCP InSession": opens a TCP connection with the destination and sends TCP probes with 28 + increasing TTL values, to prevent false packet loss introduced by firewalls, and ensure packets 29 + follow a single flow, akin to a normal TCP session. 30 + - Similar QUIC-based traceroute. 31 + - Enhanced ToS (DSCP/ECN) field report. 32 + ''; 33 + homepage = "https://github.com/catchpoint/Networking.traceroute/"; 34 + changelog = "https://github.com/catchpoint/Networking.traceroute/blob/${src.rev}/ChangeLog"; 35 + license = with licenses; [ gpl2Only lgpl21Only ]; 36 + mainProgram = "traceroute"; 37 + maintainers = with maintainers; [ nicoo ]; 38 + platforms = platforms.all; 39 + }; 40 + }