Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
971 B
Nix
35 lines
971 B
Nix
{
|
|
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=";
|
|
};
|
|
|
|
cargoHash = "sha256-0SXb8jBAYKnNFguamSMosPE6gH9aUzydF16w3SLhOU4=";
|
|
|
|
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}";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "batmon";
|
|
platforms = with lib.platforms; unix ++ windows;
|
|
broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64;
|
|
maintainers = with lib.maintainers; [ _6543 ];
|
|
};
|
|
}
|