about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/au/audion/package.nix
blob: 0f9b05c527ace683173f840d6632c61cbbd4962a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ 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";
  };
}