From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 2/2 v2] gnu: Add dfc. Date: Fri, 30 Aug 2013 23:07:17 +0200 Message-ID: <1377896837-6547-2-git-send-email-tipecaml@gmail.com> References: <1377893316-5136-1-git-send-email-tipecaml@gmail.com> <1377896837-6547-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50686) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VFVyc-0002dp-7y for guix-devel@gnu.org; Fri, 30 Aug 2013 17:11:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VFVyW-0000LR-8A for guix-devel@gnu.org; Fri, 30 Aug 2013 17:11:30 -0400 Received: from mail-wg0-x235.google.com ([2a00:1450:400c:c00::235]:44797) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VFVyW-0000LL-1d for guix-devel@gnu.org; Fri, 30 Aug 2013 17:11:24 -0400 Received: by mail-wg0-f53.google.com with SMTP id n12so2017610wgh.8 for ; Fri, 30 Aug 2013 14:11:23 -0700 (PDT) In-Reply-To: <1377896837-6547-1-git-send-email-tipecaml@gmail.com> List-Id: 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/sysutils.scm (dfc): New variable. --- gnu/packages/sysutils.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/sysutils.scm b/gnu/packages/sysutils.scm index e7ee51f..d91719c 100644 --- a/gnu/packages/sysutils.scm +++ b/gnu/packages/sysutils.scm @@ -20,10 +20,33 @@ #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) #:use-module (gnu packages) #:use-module (gnu packages ncurses)) +(define-public dfc + (package + (name "dfc") + (version "3.0.3") + (source + (origin + (method url-fetch) + (uri (string-append + "http://projects.gw-computing.net/attachments/download/78/dfc-" + version ".tar.gz")) + (sha256 + (base32 + "1b4hfqv23l87cb37fxwzfk2sgspkyxpr3ig2hsd23hr6mm982j7z")))) + (build-system cmake-build-system) + (arguments '(#:tests? #f)) ; There are no tests. + (home-page "http://projects.gw-computing.net/projects/dfc") + (synopsis "Display file system space usage using graphs and colors.") + (description + "dfc (df color) is a modern version of df. It uses colors, draws pretty +graphs and can export its output to different formats.") + (license bsd-3))) + (define-public htop (package (name "htop") -- 1.7.10.4