[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add rtss.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add rtss. |
Date: |
Mon, 14 Feb 2022 05:00:12 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 919251ed62 gnu: Add rtss.
919251ed62 is described below
commit 919251ed62c411f6c6494f904ffab24431fbf78d
Author: Jai Vetrivelan <jaivetrivelan@gmail.com>
AuthorDate: Sun Feb 13 20:51:27 2022 +0530
gnu: Add rtss.
* gnu/packages/rust-apps.scm (rtss): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/rust-apps.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 725677b3d9..5b27bf3647 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1585,6 +1585,28 @@ library and a dynamic library, and a C header to be used
by any C (and
C-compatible) software.")
(license license:expat)))
+(define-public rtss
+ (package
+ (name "rtss")
+ (version "0.6.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "rtss" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1r1b6fynkjnpj5p3k209sa13mjvh4k0ghzwnribm48dh9v7lfnnv"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-libc" ,rust-libc-0.2)
+ ("rust-memchr" ,rust-memchr-2))))
+ (home-page "https://github.com/Freaky/rtss")
+ (synopsis "Annotate stdout/stderr with elapsed times")
+ (description "@code{rtss} annotates its output with relative durations
between
+consecutive lines and since program start.")
+ (license license:expat)))
+
(define-public swayhide
(package
(name "swayhide")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add rtss.,
guix-commits <=