Merge pull request #229730 from figsoda/trippy

trippy: init at 0.7.0
This commit is contained in:
Fabian Affolter 2023-05-03 23:22:01 +02:00 committed by GitHub
commit 9c8f8ee11a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "trippy";
version = "0.7.0";
src = fetchFromGitHub {
owner = "fujiapple852";
repo = "trippy";
rev = version;
hash = "sha256-ABdG1FKgFF/vMkAQl2tk8FcnSzC4Z3r9E67ZwAGPt8U=";
};
cargoHash = "sha256-1H3JHZbG8k15Qfpsk+XykmbotHcO+J4zTbwdlOR2kso=";
meta = with lib; {
description = "A network diagnostic tool";
homepage = "https://trippy.cli.rs";
changelog = "https://github.com/fujiapple852/trippy/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
mainProgram = "trip";
};
}

View File

@ -13065,6 +13065,8 @@ with pkgs;
trilium-server
;
trippy = callPackage ../tools/networking/trippy { };
trousers = callPackage ../tools/security/trousers { };
trueseeing = callPackage ../tools/security/trueseeing { };