depot/third_party/nixpkgs/pkgs/by-name/ba/batmon/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

34 lines
955 B
Nix

{
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 ];
};
}