mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
Merge pull request #320287 from NixOS/backport-318868-to-release-24.05
[Backport release-24.05] batmon: init at 0.0.1
This commit is contained in:
commit
9ed68232ed
34
pkgs/by-name/ba/batmon/package.nix
Normal file
34
pkgs/by-name/ba/batmon/package.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user