Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
971 B
Nix
Raw Permalink Normal View History

{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "batmon";
version = "0.0.1";
src = fetchFromGitHub {
owner = "6543";
repo = "batmon";
tag = "v${version}";
hash = "sha256-+kjDNQKlaoI5fQ5FqYF6IPCKeE92WKxIhVCKafqfE0o=";
};
2025-01-29 03:12:08 +01:00
cargoHash = "sha256-0SXb8jBAYKnNFguamSMosPE6gH9aUzydF16w3SLhOU4=";
2025-06-02 08:42:56 +02:00
meta = {
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}";
2025-06-02 08:42:56 +02:00
license = lib.licenses.asl20;
mainProgram = "batmon";
2025-06-02 08:42:56 +02:00
platforms = with lib.platforms; unix ++ windows;
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64;
2025-06-02 08:42:56 +02:00
maintainers = with lib.maintainers; [ _6543 ];
};
}