Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
jsoncpp,
|
|
libtins,
|
|
libpcap,
|
|
openssl,
|
|
unstableGitUpdater,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dublin-traceroute";
|
|
version = "0.4.2-unstable-2024-04-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "insomniacslk";
|
|
repo = "dublin-traceroute";
|
|
rev = "a92118d93fd1fa7bdb827e741dd848b7f7083a1e";
|
|
hash = "sha256-UJeFPVi3423Jh72fVk8QbLX1tTNAQ504xYs9HwVCkZc=";
|
|
};
|
|
|
|
# gtest requires C++17, while dublin-traceroute requires C++11
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace-fail "ENABLE_TESTING()" ""
|
|
'';
|
|
|
|
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";
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|