From mboxrd@z Thu Jan 1 00:00:00 1970 From: John J Foerch Subject: [PATCH] gnu: Add di. Date: Sat, 02 Jul 2016 15:13:52 -0400 Message-ID: <87poqvam4v.fsf@hecubus.retroj.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJQMo-0006od-Om for guix-devel@gnu.org; Sat, 02 Jul 2016 15:14:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJQMk-0008Vx-Ds for guix-devel@gnu.org; Sat, 02 Jul 2016 15:14:13 -0400 Received: from plane.gmane.org ([80.91.229.3]:47192) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJQMk-0008Vr-6T for guix-devel@gnu.org; Sat, 02 Jul 2016 15:14:10 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1bJQMe-0002D2-4e for guix-devel@gnu.org; Sat, 02 Jul 2016 21:14:04 +0200 Received: from 152.160.144.141 ([152.160.144.141]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 02 Jul 2016 21:14:04 +0200 Received: from jjfoerch by 152.160.144.141 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 02 Jul 2016 21:14:04 +0200 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 --=-=-= Content-Type: text/plain Hello, Here is a package for the program 'di' (df alternative). Let me know if anything is amiss, cheers! John Foerch --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-di.patch Content-Description: package definition for di >From 4ef5a6edba2e10a59865a6aba134d2f0532c7503 Mon Sep 17 00:00:00 2001 From: "John J. Foerch" Date: Sat, 2 Jul 2016 15:08:30 -0400 Subject: [PATCH] gnu: Add di. * gnu/packages/admin.scm (di): New variable. --- gnu/packages/admin.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 415a35a..f128f68 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1708,3 +1708,34 @@ throughput (in the same interval).") "The Fuck tries to match a rule for a previous, mistyped command, creates a new command using the matched rule, and runs it.") (license license:x11))) + +(define-public di + (package + (name "di") + (version "4.42") + (source + (origin + (method url-fetch) + (uri (string-append "https://gentoo.com/di/di-" version ".tar.gz")) + (sha256 + (base32 "1i6m9zdnidn8268q1lz9fd8payk7s4pgwh5zlam9rr4dy6h6a67n")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'check) + (add-before 'build 'setup-environment + (lambda* (#:key outputs #:allow-other-keys) + (setenv "CC" "gcc") + (setenv "prefix" (assoc-ref outputs "out")) + #t))) + #:make-flags (list "-e"))) + (home-page "https://www.gentoo.com/di/") + (synopsis "Advanced df like disk information utility") + (description + "'di' is a disk information utility, displaying everything +(and more) that your 'df' command does. It features the ability to display +your disk usage in whatever format you prefer. It is designed to be highly +portable. Great for heterogenous networks.") + (license license:zlib))) -- 2.9.0 --=-=-=--