about summary refs log tree commit diff
path: root/pkgs/by-name/du
diff options
context:
space:
mode:
authorArthur Gautier <arthur.gautier@arista.com>2023-10-17 12:59:41 -0700
committerArthur Gautier <arthur.gautier@arista.com>2023-11-27 09:58:52 -0800
commit48db4edfe212c7f6a324dba0d011f8b1e7c3680f (patch)
tree3c89f444a3383754b9af310a720fecfb6a6995bc /pkgs/by-name/du
parent46e11ae73d8b8afaa10afe62b143ffb16775b263 (diff)
dublin-traceroute: init at 0.4.2-unstable-2023-04-12
dublin-traceroute is a tool to help debug ECMP networks
Diffstat (limited to 'pkgs/by-name/du')
-rw-r--r--pkgs/by-name/du/dublin-traceroute/package.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/by-name/du/dublin-traceroute/package.nix b/pkgs/by-name/du/dublin-traceroute/package.nix
new file mode 100644
index 0000000000000..fedb585fc6a2a
--- /dev/null
+++ b/pkgs/by-name/du/dublin-traceroute/package.nix
@@ -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";
+  };
+}