unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Divya Ranjan via Guix-patches via <guix-patches@gnu.org>
To: 75372@debbugs.gnu.org
Cc: efraim@flashner.co.il
Subject: [bug#75372] [PATCH 44/44] gnu: Add rust-bottom-0.10.
Date: Sun, 05 Jan 2025 07:38:05 +0000	[thread overview]
Message-ID: <2DC22982-66AD-4DD3-9F0C-9E95F042AC46@subvertising.org> (raw)
In-Reply-To: <73e671aef2515f7a30d0a8e4f852d0ecbcd84274.1736059920.git.divya@subvertising.org>

[-- Attachment #1: Type: text/plain, Size: 4763 bytes --]

Efraim, in the last patch I forgot to add the copyright signature. Just add "Divya Ranjan Pattanaik <divya@subvertising.org>"

On 5 January 2025 07:04:20 GMT, Divya Ranjan <divya@subvertising.org> wrote:
>* gnu/packages/rust-apps.scm (rust-bottom-0.10): New variable.
>---
> gnu/packages/rust-apps.scm | 69 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 69 insertions(+)
>
>diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
>index 2182daa2f3..8b38f78118 100644
>--- a/gnu/packages/rust-apps.scm
>+++ b/gnu/packages/rust-apps.scm
>@@ -377,6 +377,75 @@ (define-public bat
> paging.")
>     (license (list license:expat license:asl2.0))))
> 
>+(define-public rust-bottom-0.10
>+  (package
>+    (name "rust-bottom")
>+    (version "0.10.2")
>+    (source
>+     (origin
>+       (method git-fetch)
>+       (uri (git-reference
>+             (url "https://github.com/ClementTsang/bottom/")
>+             (commit "2ec1fb56c9db0b37acc4eca3230adfb52720376b")))
>+       (file-name (git-file-name name version))
>+       (sha256
>+        (base32 "12g4r527hj43gb8vymap4ysrjdwg5f8vvrbpshvywnz2vxyifvc6"))))
>+    (build-system cargo-build-system)
>+    (arguments
>+     `(#:tests? #f ;Some test files can’t be found in build env
>+       #:cargo-build-flags '("--release")
>+       #:cargo-inputs (("rust-anyhow" ,rust-anyhow-1)
>+                       ("rust-backtrace" ,rust-backtrace-0.3)
>+                       ("rust-cfg-if" ,rust-cfg-if-1)
>+                       ("rust-clap" ,rust-clap-4)
>+                       ("rust-clap-complete" ,rust-clap-complete-4)
>+                       ("rust-clap-complete-fig" ,rust-clap-complete-fig-4)
>+                       ("rust-clap-complete-nushell" ,rust-clap-complete-nushell-4)
>+                       ("rust-clap-mangen" ,rust-clap-mangen-0.2)
>+                       ("rust-concat-string" ,rust-concat-string-1)
>+                       ("rust-core-foundation" ,rust-core-foundation-0.9)
>+                       ("rust-crossterm" ,rust-crossterm-0.27)
>+                       ("rust-ctrlc" ,rust-ctrlc-3)
>+                       ("rust-dirs" ,rust-dirs-5)
>+                       ("rust-fern" ,rust-fern-0.6)
>+                       ("rust-filedescriptor" ,rust-filedescriptor-0.8)
>+                       ("rust-hashbrown" ,rust-hashbrown-0.14)
>+                       ("rust-humantime" ,rust-humantime-2)
>+                       ("rust-indexmap" ,rust-indexmap-2)
>+                       ("rust-indoc" ,rust-indoc-2)
>+                       ("rust-itertools" ,rust-itertools-0.13)
>+                       ("rust-libc" ,rust-libc-0.2)
>+                       ("rust-log" ,rust-log-0.4)
>+                       ("rust-mach2" ,rust-mach2-0.4)
>+                       ("rust-nvml-wrapper" ,rust-nvml-wrapper-0.10)
>+                       ("rust-ratatui" ,rust-ratatui-0.27)
>+                       ("rust-regex" ,rust-regex-1)
>+                       ("rust-rustix" ,rust-rustix-0.38)
>+                       ("rust-schemars" ,rust-schemars-0.8)
>+                       ("rust-serde" ,rust-serde-1)
>+                       ("rust-serde-json" ,rust-serde-json-1)
>+                       ("rust-starship-battery" ,rust-starship-battery-0.9)
>+                       ("rust-strum" ,rust-strum-0.26)
>+                       ("rust-sysctl" ,rust-sysctl-0.5)
>+                       ("rust-sysinfo" ,rust-sysinfo-0.30)
>+                       ("rust-time" ,rust-time-0.3)
>+                       ("rust-toml-edit" ,rust-toml-edit-0.22)
>+                       ("rust-unicode-ellipsis" ,rust-unicode-ellipsis-0.2)
>+                       ("rust-unicode-segmentation" ,rust-unicode-segmentation-1)
>+                       ("rust-unicode-width" ,rust-unicode-width-0.1)
>+                       ("rust-windows" ,rust-windows-0.58))
>+       #:cargo-development-inputs (("rust-assert-cmd" ,rust-assert-cmd-2)
>+                                   ("rust-cargo-husky" ,rust-cargo-husky-1)
>+                                   ("rust-portable-pty" ,rust-portable-pty-0.8)
>+                                   ("rust-predicates" ,rust-predicates-3))))
>+    (home-page "https://github.com/ClementTsang/bottom")
>+    (synopsis
>+     "Customizable cross-platform graphical process/system monitor for the terminal")
>+    (description
>+     "This package provides a customizable cross-platform graphical process/system
>+monitor for the terminal.  Supports Linux, @code{macOS}, and Windows.")
>+    (license license:expat)))
>+
> (define-public cargo-machete
>   (package
>     (name "cargo-machete")
>-- 
>2.47.1
>

Divya Ranjan, Mathematics, Philosophy and Libre Software

[-- Attachment #2: Type: text/html, Size: 5163 bytes --]

  reply	other threads:[~2025-01-05  7:39 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-05  6:59 [bug#75372] [PATCH 00/44] Add rust-bottom-0.10 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 01/44] gnu: Add rust-serial-core-0.4 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 02/44] gnu: Add rust-serial-windows-0.4 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 03/44] gnu: Add rust-serial-unix-0.4 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 04/44] gnu: Add rust-termios-0.2 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 05/44] gnu: Add rust-ioctl-rs-0.1 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 06/44] gnu: Add rust-portable-pty-0.8 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 07/44] gnu: Add rust-unicode-ellipsis-0.2 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 08/44] gnu: Add rust-starship-battery-0.9 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 09/44] gnu: Add rust-stability-0.2 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 10/44] gnu: rust-sysinfo: Update to 0.30.13 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 11/44] gnu: Add rust-ratatui-0.27 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 12/44] gnu: Add rust-wrapcenum-derive-0.4 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 13/44] gnu: Add rust-nvml-wrapper-0.10 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 14/44] gnu: Add rust-nvml-wrapper-sys-0.8 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 15/44] gnu: Add rust-nu-cli-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 16/44] gnu: Add rust-concat-string-1 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 17/44] gnu: Add rust-nu-cmd-base-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 18/44] gnu: Add rust-nu-cmd-lang-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 19/44] gnu: Add rust-nu-command-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 20/44] gnu: Add rust-nu-color-config-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 21/44] gnu: Add rust-nu-engine-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 22/44] gnu: Add rust-nu-glob-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:03 ` [bug#75372] [PATCH 23/44] gnu: Add rust-nu-json-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 24/44] gnu: Add rust-nu-parser-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 25/44] gnu: Add rust-nu-path-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 26/44] gnu: Add rust-nu-plugin-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 27/44] gnu: Add rust-nu-pretty-hex-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 28/44] gnu: Add rust-nu-protocol-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 29/44] gnu: Add rust-calamine-0.22 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 30/44] gnu: Add rust-nu-system-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 31/44] gnu: Add rust-nu-table-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 32/44] gnu: Add rust-nu-term-grid-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 33/44] gnu: Add rust-nu-test-support-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 34/44] gnu: Add rust-tzdb-0.5 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 35/44] gnu: Add rust-xcb-0.8 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 36/44] gnu: Add rust-shadow-rs-0.24 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 37/44] gnu: Add rust-x11-clipboard-0.3 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 38/44] gnu: Add rust-clipboard-win-2 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 39/44] gnu: Add rust-clipboard-0.5 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 40/44] gnu: Add rust-reedline-0.27 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 41/44] gnu: Add rust-lscolors-0.15 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 42/44] gnu: Add rust-nu-utils-0.88 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 43/44] gnu: rust-clap-complete-nushell-4: Update to 4.5.5 Divya Ranjan via Guix-patches via
2025-01-05  7:04 ` [bug#75372] [PATCH 44/44] gnu: Add rust-bottom-0.10 Divya Ranjan via Guix-patches via
2025-01-05  7:38   ` Divya Ranjan via Guix-patches via [this message]
2025-01-05 11:04 ` bug#75372: [PATCH 00/44] " Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2DC22982-66AD-4DD3-9F0C-9E95F042AC46@subvertising.org \
    --to=guix-patches@gnu.org \
    --cc=75372@debbugs.gnu.org \
    --cc=divya@subvertising.org \
    --cc=efraim@flashner.co.il \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).