mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 10:57:49 +00:00
dublin-traceroute: init at 0.4.2-unstable-2023-04-12
dublin-traceroute is a tool to help debug ECMP networks
This commit is contained in:
parent
46e11ae73d
commit
48db4edfe2
41
pkgs/by-name/du/dublin-traceroute/package.nix
Normal file
41
pkgs/by-name/du/dublin-traceroute/package.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, jsoncpp, libtins, libpcap, openssl, unstableGitUpdater, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "dublin-traceroute";
|
||||
version = "0.4.2-unstable-2023-04-12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "insomniacslk";
|
||||
repo = "dublin-traceroute";
|
||||
rev = "2fb78ea05596dfdf8f7764b497eb8d3a812cb695";
|
||||
hash = "sha256-E1HYMd0wDTfAZ0TamQFazh8CPhMa2lNIbF4aEBf5qhk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
buildInputs = [ jsoncpp libtins libpcap openssl ];
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"lib"
|
||||
"dev"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
# 0.4.2 was tagged in 2017
|
||||
updateScript = unstableGitUpdater { };
|
||||
|
||||
tests = {
|
||||
inherit (nixosTests) dublin-traceroute;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "NAT-aware multipath traceroute tool";
|
||||
homepage = "https://dublin-traceroute.net/";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ baloo ];
|
||||
platforms = platforms.unix;
|
||||
mainProgram = "dublin-traceroute";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user