1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/tools/networking/gping/default.nix

30 lines
629 B
Nix
Raw Normal View History

{ lib
2021-05-15 22:01:12 +01:00
, stdenv
2020-11-14 03:01:32 +00:00
, rustPlatform
, fetchFromGitHub
2021-05-15 22:01:12 +01:00
, libiconv
}:
2020-11-14 03:01:32 +00:00
rustPlatform.buildRustPackage rec {
pname = "gping";
2021-03-10 23:12:59 +00:00
version = "1.2.1";
2020-11-14 03:01:32 +00:00
src = fetchFromGitHub {
owner = "orf";
repo = "gping";
rev = "v${version}";
2021-03-10 23:12:59 +00:00
sha256 = "sha256-lApm1JLXNjDKLj6zj25OaZDVp7lLW3qyrDsvJrudl8I=";
};
cargoSha256 = "sha256-d1NjPwT3YDp1U9JWeUejpWDbJonFlt5lYbUf7p3jVT0=";
2021-05-15 22:01:12 +01:00
buildInputs = lib.optional stdenv.isDarwin libiconv;
meta = with lib; {
description = "Ping, but with a graph";
homepage = "https://github.com/orf/gping";
2020-11-14 03:01:32 +00:00
license = licenses.mit;
maintainers = with maintainers; [ andrew-d ];
};
}