nixpkgs/pkgs/tools/networking/gping/default.nix

26 lines
561 B
Nix
Raw Normal View History

{ lib
2020-11-14 04:01:32 +01:00
, rustPlatform
, fetchFromGitHub
}:
2020-11-14 04:01:32 +01:00
rustPlatform.buildRustPackage rec {
pname = "gping";
2020-11-30 22:26:04 +01:00
version = "1.0.1-post2";
2020-11-14 04:01:32 +01:00
src = fetchFromGitHub {
owner = "orf";
repo = "gping";
rev = "v${version}";
2020-11-30 22:26:04 +01:00
sha256 = "0cvbwxvq1cj9xcjc3hnxrpq9yrmfkapy533cbjzsjmvgiqk11hps";
};
2020-11-30 22:26:04 +01:00
cargoSha256 = "0vdhincvfassj7gbiplwbi43yyic3l6wlc32s6ci68b2wjmff8pn";
meta = with lib; {
description = "Ping, but with a graph";
homepage = "https://github.com/orf/gping";
2020-11-14 04:01:32 +01:00
license = licenses.mit;
maintainers = with maintainers; [ andrew-d ];
};
}