From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58887) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hkBON-0007tJ-T5 for guix-patches@gnu.org; Sun, 07 Jul 2019 13:56:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hkBOM-0007hp-TA for guix-patches@gnu.org; Sun, 07 Jul 2019 13:56:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48556) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hkBOM-0007hY-Pm for guix-patches@gnu.org; Sun, 07 Jul 2019 13:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hkBOM-000337-KO for guix-patches@gnu.org; Sun, 07 Jul 2019 13:56:02 -0400 Subject: [bug#36541] [PATCH] gnu: Add s-tui. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58572) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hkBNU-0007ik-Lx for guix-patches@gnu.org; Sun, 07 Jul 2019 13:55:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hkBNS-00077C-L0 for guix-patches@gnu.org; Sun, 07 Jul 2019 13:55:08 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:55642) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hkBNS-00076L-FT for guix-patches@gnu.org; Sun, 07 Jul 2019 13:55:06 -0400 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 9958517165 for ; Sun, 7 Jul 2019 18:55:03 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 4b94dbc4 for ; Sun, 7 Jul 2019 17:55:03 +0000 (UTC) From: Christopher Baines Date: Sun, 7 Jul 2019 18:55:03 +0100 Message-Id: <20190707175503.11386-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36541@debbugs.gnu.org * gnu/packages/admin.scm (s-tui): New variable. --- gnu/packages/admin.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 411be40f5b..98795966f1 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1453,6 +1453,28 @@ tables. This package contains only the user-space= tools needed for ACPI table development, not the kernel implementation of ACPI.") (license license:gpl2))) ; dual GPLv2/ACPICA Licence =20 +(define-public s-tui + (package + (name "s-tui") + (version "0.8.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "s-tui" version)) + (sha256 + (base32 + "00lsh2v4i8rwfyjyxx5lijd6rnk9smcfffhzg5sv94ijpcnh216m")))) + (build-system python-build-system) + (inputs + `(("python-psutil" ,python-psutil) + ("python-urwid" ,python-urwid))) + (home-page "https://github.com/amanusk/s-tui") + (synopsis "Interactive terminal stress test and monitoring tool") + (description + "The Stress Terminal UI displays graphs of the CPU frequency, +utilization, temperature and power.") + (license license:gpl2+))) + (define-public stress (package (name "stress") --=20 2.22.0