Merge pull request #229730 from figsoda/trippy

trippy: init at 0.7.0

authored by Fabian Affolter and committed by GitHub 9c8f8ee1 e9465b7b

+29
+27
pkgs/tools/networking/trippy/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "trippy"; 8 + version = "0.7.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "fujiapple852"; 12 + repo = "trippy"; 13 + rev = version; 14 + hash = "sha256-ABdG1FKgFF/vMkAQl2tk8FcnSzC4Z3r9E67ZwAGPt8U="; 15 + }; 16 + 17 + cargoHash = "sha256-1H3JHZbG8k15Qfpsk+XykmbotHcO+J4zTbwdlOR2kso="; 18 + 19 + meta = with lib; { 20 + description = "A network diagnostic tool"; 21 + homepage = "https://trippy.cli.rs"; 22 + changelog = "https://github.com/fujiapple852/trippy/blob/${src.rev}/CHANGELOG.md"; 23 + license = licenses.asl20; 24 + maintainers = with maintainers; [ figsoda ]; 25 + mainProgram = "trip"; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 13065 trilium-server 13066 ; 13067 13068 trousers = callPackage ../tools/security/trousers { }; 13069 13070 trueseeing = callPackage ../tools/security/trueseeing { };
··· 13065 trilium-server 13066 ; 13067 13068 + trippy = callPackage ../tools/networking/trippy { }; 13069 + 13070 trousers = callPackage ../tools/security/trousers { }; 13071 13072 trueseeing = callPackage ../tools/security/trueseeing { };