From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 06/13] gnu: Add sbm. Date: Mon, 9 Jan 2017 20:21:18 +0000 Message-ID: <20170109202125.31873-7-ng0@libertad.pw> References: <20170109202125.31873-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43956) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQgRJ-0002ps-FJ for guix-devel@gnu.org; Mon, 09 Jan 2017 15:21:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQgRH-0004D9-Rv for guix-devel@gnu.org; Mon, 09 Jan 2017 15:21:09 -0500 Received: from aibo.runbox.com ([91.220.196.211]:40988) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cQgRH-0004Cs-KI for guix-devel@gnu.org; Mon, 09 Jan 2017 15:21:07 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cQgRF-0003Rl-Rd for guix-devel@gnu.org; Mon, 09 Jan 2017 21:21:05 +0100 In-Reply-To: <20170109202125.31873-1-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/suckless.scm (sbm): New variable. --- gnu/packages/suckless.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 60f5093f2..fd1399d30 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -373,3 +373,29 @@ drivers capable of injecting packets in wireless networks.") Pipe text to it, and it will scroll a given number of letters from right to left.") (license license:wtfpl))) + +(define-public sbm + (package + (name "sbm") + (version "0.9") + (source + (origin + (method url-fetch) + (uri (string-append "http://dl.2g30.org/releases/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "1nks5mkh5wn30kyjzlkjlgi31bv1wq52kbp0r6nzbyfnvfdlywik")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests + #:make-flags (list "CC=gcc" + (string-append "PREFIX=" %output)) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) ; No configure script + (home-page "http://2f30.org") + (synopsis "Simple bandwidth monitor") + (description + "Sbm is a simple bandwidth monitor.") + (license license:isc))) -- 2.11.0