Commit 743e0976 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

audion: init at 0.2.0

Tool to ping a host continuously and write results to a file

https://github.com/audiusGmbH/audion
parent 7b228851
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
  pname = "audion";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "audiusGmbH";
    repo = "audion";
    rev = "refs/tags/${version}";
    hash = "sha256-j8sQCeHpxrpzyY75DypWI9z+JBWq7aaaXPnZh7ksRjc=";
  };

  cargoHash = "sha256-/x2gjLz73uPY+ouQOxLN2ViET+V/s9jgkgw97yzVj24=";

  meta = with lib; {
    description = "Ping the host continuously and write results to a file";
    homepage = "https://github.com/audiusGmbH/audion";
    changelog = "https://github.com/audiusGmbH/audion/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "audion";
  };
}