From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sree Harsha Totakura Subject: =?UTF-8?q?=5BPATCH=5D=20gnu=3A=20Add=20ncdc-1=2E18=2E1=2E?= Date: Fri, 24 Jan 2014 18:36:34 +0100 Message-ID: <1390584994-32736-1-git-send-email-sreeharsha@totakura.in> References: <52E2A0DA.4070406@totakura.in> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57291) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6kgv-0006TY-Cp for guix-devel@gnu.org; Fri, 24 Jan 2014 12:37:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6kgo-0004Kt-HN for guix-devel@gnu.org; Fri, 24 Jan 2014 12:37:17 -0500 Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8]:40685 helo=smtp1.informatik.tu-muenchen.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6kgo-0004Kl-AZ for guix-devel@gnu.org; Fri, 24 Jan 2014 12:37:10 -0500 In-Reply-To: <52E2A0DA.4070406@totakura.in> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/dc.scm : New module. * gnu-system.am (GNU_SYSTEM_MODULES): Add module. --- gnu-system.am | 1 + gnu/packages/dc.scm | 62 +++++++++++++++++++++++++++++++++++++++++++++= ++++++ 2 files changed, 63 insertions(+) create mode 100644 gnu/packages/dc.scm diff --git a/gnu-system.am b/gnu-system.am index 31d664e..3112dc4 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -52,6 +52,7 @@ GNU_SYSTEM_MODULES =3D \ gnu/packages/cryptsetup.scm \ gnu/packages/curl.scm \ gnu/packages/cyrus-sasl.scm \ + gnu/packages/dc.scm \ gnu/packages/dejagnu.scm \ gnu/packages/ddrescue.scm \ gnu/packages/dictionaries.scm \ diff --git a/gnu/packages/dc.scm b/gnu/packages/dc.scm new file mode 100644 index 0000000..91e9d6e --- /dev/null +++ b/gnu/packages/dc.scm @@ -0,0 +1,62 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2014 Sree Harsha Totakura +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (a= t +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages dc) + #:use-module (gnu packages) + #:use-module (gnu packages compression) + #:use-module (gnu packages glib) + #:use-module (gnu packages gnutls) + #:use-module (gnu packages ncurses) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages sqlite) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module ((guix licenses) + #:renamer (symbol-prefix-proc 'license:))) + +(define-public ncdc + (package + (name "ncdc") + (version "1.18.1") + (source + (origin=20 + (method url-fetch) + (uri (string-append "http://dev.yorhel.nl/download/ncdc-" version + ".tar.gz")) + (sha256 (base32 + "11c6z9c3vv2vg01q02r53m28q3cx6x66j1l63f1mbk1crlqpf9fc"))= )) + (build-system gnu-build-system) + (inputs=20 + `(("bzip2" ,bzip2) + ("glib" ,glib) + ("gnutls" ,gnutls) + ("ncurses" ,ncurses) + ("sqlite" ,sqlite) + ("zlib" ,zlib))) + (native-inputs + `(("pkg-config", pkg-config))) + (home-page "http://dev.yorhel.nl/ncdc") + (synopsis=20 + "Lightweight direct connect client with a friendly ncurses interfac= e") + (description + "Ncdc is a client for the Direct Connect peer-to-peer protocol impl= emented +using ncurses. It is known for its smaller footprint and ease of use.") + (license 'license:x11))) --=20 1.7.10.4