trippy: init at 0.7.0
This commit is contained in:
parent
69259eec23
commit
b8466582d6
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/networking/trippy/default.nix
Normal file
27
pkgs/tools/networking/trippy/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -13065,6 +13065,8 @@ with pkgs;
|
||||||
trilium-server
|
trilium-server
|
||||||
;
|
;
|
||||||
|
|
||||||
|
trippy = callPackage ../tools/networking/trippy { };
|
||||||
|
|
||||||
trousers = callPackage ../tools/security/trousers { };
|
trousers = callPackage ../tools/security/trousers { };
|
||||||
|
|
||||||
trueseeing = callPackage ../tools/security/trueseeing { };
|
trueseeing = callPackage ../tools/security/trueseeing { };
|
||||||
|
|
Loading…
Reference in a new issue