From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55714) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1few3J-0003KA-K5 for guix-patches@gnu.org; Mon, 16 Jul 2018 01:28:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1few3G-00055i-CH for guix-patches@gnu.org; Mon, 16 Jul 2018 01:28:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37197) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1few3G-00055a-7u for guix-patches@gnu.org; Mon, 16 Jul 2018 01:28:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1few3G-0006kZ-22 for guix-patches@gnu.org; Mon, 16 Jul 2018 01:28:02 -0400 Subject: [bug#32168] [PATCH] gnu: Add pscircle. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55608) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1few2h-00038Z-US for guix-patches@gnu.org; Mon, 16 Jul 2018 01:27:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1few2e-0004qv-Q3 for guix-patches@gnu.org; Mon, 16 Jul 2018 01:27:27 -0400 Received: from mail-lj1-x230.google.com ([2a00:1450:4864:20::230]:40426) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1few2e-0004qP-F7 for guix-patches@gnu.org; Mon, 16 Jul 2018 01:27:24 -0400 Received: by mail-lj1-x230.google.com with SMTP id j19-v6so3401276ljc.7 for ; Sun, 15 Jul 2018 22:27:24 -0700 (PDT) From: Oleg Pykhalov Date: Mon, 16 Jul 2018 08:27:11 +0300 Message-Id: <20180716052711.26244-1-go.wigust@gmail.com> 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: 32168@debbugs.gnu.org * gnu/packages/admin.scm (pscircle): New variable. --- gnu/packages/admin.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index e80436e95..b413d63fb 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -46,6 +46,7 @@ #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system meson) #:use-module (guix build-system perl) #:use-module (guix build-system python) #:use-module (guix build-system trivial) @@ -2740,3 +2741,30 @@ support forum. It runs with the @code{/exec} command in most IRC clients.") ;; perl-xml-dumper ;; ipmitool ,@(package-inputs inxi-minimal))))) + +(define-public pscircle + (package + (name "pscircle") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://gitlab.com/mildlyparallel/pscircle/-/archive/v" + version "/pscircle-v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1k757yf2bmgfrjd417l6kpcf83hlvi0z1791vz967mwcklrsb3fj")))) + (build-system meson-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("cairo" ,cairo) + ("libpng" ,libpng) + ("libx11" ,libx11))) + (home-page "https://gitlab.com/mildlyparallel/pscircle") + (synopsis "Visualize Linux processes in a form of radial tree") + (description + "@code{pscircle} visualizes Linux processes in a form of radial tree") + (license license:gpl2+))) -- 2.18.0