nixpkgs/pkgs/by-name/ne/nexttrace/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
832 B
Nix
Raw Normal View History

{ lib, buildGo122Module, fetchFromGitHub }:
2023-03-08 03:20:55 +00:00
buildGo122Module rec {
2023-03-08 03:20:55 +00:00
pname = "nexttrace";
2024-10-20 05:20:24 +00:00
version = "1.3.5";
2023-03-08 03:20:55 +00:00
src = fetchFromGitHub {
2023-10-12 13:20:42 +00:00
owner = "nxtrace";
repo = "NTrace-core";
2023-03-08 03:20:55 +00:00
rev = "v${version}";
2024-10-20 05:20:24 +00:00
sha256 = "sha256-32QFgmvXQ+8ix1N9I6pJaIJGWOT67/FG0VVEhftwQQw=";
2023-03-08 03:20:55 +00:00
};
2024-10-20 05:20:24 +00:00
vendorHash = "sha256-WRH9doQavcdH1sd2fS8QoFSmlirBMZgSzB/sj1q6cUQ=";
2023-03-08 03:20:55 +00:00
doCheck = false; # Tests require a network connection.
ldflags = [
"-s"
"-w"
2023-10-12 13:20:42 +00:00
"-X github.com/nxtrace/NTrace-core/config.Version=v${version}"
2023-03-08 03:20:55 +00:00
];
2023-10-12 13:20:42 +00:00
postInstall = ''
mv $out/bin/NTrace-core $out/bin/nexttrace
'';
2023-03-08 03:20:55 +00:00
meta = with lib; {
description = "Open source visual route tracking CLI tool";
homepage = "https://mtr.moe";
license = licenses.gpl3Only;
maintainers = with maintainers; [ sharzy ];
2024-02-11 02:19:15 +00:00
mainProgram = "nexttrace";
2023-03-08 03:20:55 +00:00
};
}