From b8e73f70085d125d1b17d3762b0ce994acc7d9b5 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Mon, 10 Jun 2024 20:03:48 +0200 Subject: [PATCH] batmon: init at 0.0.1 Co-authored-by: Fabian Affolter Co-authored-by: h7x4 --- pkgs/by-name/ba/batmon/package.nix | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pkgs/by-name/ba/batmon/package.nix diff --git a/pkgs/by-name/ba/batmon/package.nix b/pkgs/by-name/ba/batmon/package.nix new file mode 100644 index 000000000000..e41587b1f57b --- /dev/null +++ b/pkgs/by-name/ba/batmon/package.nix @@ -0,0 +1,34 @@ +{ + lib, + stdenv, + rustPlatform, + fetchFromGitHub, +}: +rustPlatform.buildRustPackage rec { + pname = "batmon"; + version = "0.0.1"; + + src = fetchFromGitHub { + owner = "6543"; + repo = "batmon"; + rev = "refs/tags/v${version}"; + hash = "sha256-+kjDNQKlaoI5fQ5FqYF6IPCKeE92WKxIhVCKafqfE0o="; + }; + + cargoSha256 = "sha256-DJpWBset6SW7Ahg60+Tu1VpH34LcVOyrEs9suKyTE9g="; + + meta = with lib; { + description = "Interactive batteries viewer"; + longDescription = '' + An interactive viewer, similar to top, htop and other *top utilities, + but about the batteries installed in your notebook. + ''; + homepage = "https://github.com/6543/batmon/"; + changelog = "https://github.com/6543/batmon/releases/tag/v${version}"; + license = licenses.asl20; + mainProgram = "batmon"; + platforms = with platforms; unix ++ windows; + broken = stdenv.isDarwin && stdenv.isAarch64; + maintainers = with maintainers; [ _6543 ]; + }; +}