2019-06-16 21:59:06 +02:00
|
|
|
{ lib
|
2021-05-15 23:01:12 +02:00
|
|
|
, stdenv
|
2020-11-14 04:01:32 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-05-15 23:01:12 +02:00
|
|
|
, libiconv
|
2022-02-07 09:56:32 +01:00
|
|
|
, Security
|
2018-12-25 21:13:44 +01:00
|
|
|
}:
|
|
|
|
|
2020-11-14 04:01:32 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2018-12-25 21:13:44 +01:00
|
|
|
pname = "gping";
|
2022-02-07 09:56:32 +01:00
|
|
|
version = "1.2.7";
|
2018-12-25 21:13:44 +01:00
|
|
|
|
2020-11-14 04:01:32 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "orf";
|
|
|
|
repo = "gping";
|
2021-10-27 14:53:43 +02:00
|
|
|
rev = "gping-v${version}";
|
2022-02-07 09:56:32 +01:00
|
|
|
sha256 = "sha256-7o7Tj0jWFIOLmpHXWT6zcyowm7vnqMDTf0S4zHkWQ2Q=";
|
2018-12-25 21:13:44 +01:00
|
|
|
};
|
|
|
|
|
2022-02-07 09:56:32 +01:00
|
|
|
cargoSha256 = "sha256-t+68Rea74RE43TXTSyhZCLXCdBfh7K92Z/amO+wBUuI=";
|
2018-12-25 21:13:44 +01:00
|
|
|
|
2022-02-07 09:56:32 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2021-05-15 23:01:12 +02:00
|
|
|
|
2018-12-25 21:13:44 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Ping, but with a graph";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/orf/gping";
|
2020-11-14 04:01:32 +01:00
|
|
|
license = licenses.mit;
|
2018-12-25 21:13:44 +01:00
|
|
|
maintainers = with maintainers; [ andrew-d ];
|
|
|
|
};
|
|
|
|
}
|