about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorh7x4 <h7x4@nani.wtf>2024-06-16 04:09:41 +0200
committerGitHub <noreply@github.com>2024-06-16 04:09:41 +0200
commit583cff70e6e597b0cc023f2b2c973534a2b6e36e (patch)
treec04b5474becea5e64151057d29d21874b60d8ab4 /pkgs/by-name
parent6238558e56ff6387fd42e2d7bca17f6dfc9751c6 (diff)
parentb8e73f70085d125d1b17d3762b0ce994acc7d9b5 (diff)
Merge pull request #318868 from 6543-forks/batmon
batmon: init at 0.0.1
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/ba/batmon/package.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/by-name/ba/batmon/package.nix b/pkgs/by-name/ba/batmon/package.nix
new file mode 100644
index 0000000000000..e41587b1f57b4
--- /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 ];
+  };
+}