From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: [PATCH] gnu: Add c-graph. Date: Fri, 8 Apr 2016 21:35:21 +0200 Message-ID: <1460144121-2079-1-git-send-email-jmd@gnu.org> 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]:58864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aocBt-0005AT-30 for guix-devel@gnu.org; Fri, 08 Apr 2016 15:35:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aocBp-0006F1-9k for guix-devel@gnu.org; Fri, 08 Apr 2016 15:35:37 -0400 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 Cc: John Darrington * gnu/packages/maths.scm (c-graph): New variable. --- gnu/packages/maths.scm | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index adebf09..34c9ddd 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013, 2014, 2015, 2016 Andreas Enge ;;; Copyright =C2=A9 2013 Nikita Karetnikov -;;; Copyright =C2=A9 2014 John Darrington +;;; Copyright =C2=A9 2014, 2016 John Darrington ;;; Copyright =C2=A9 2014, 2015, 2016 Eric Bavier ;;; Copyright =C2=A9 2014 Federico Beffa ;;; Copyright =C2=A9 2014 Mathieu Lirzin @@ -78,6 +78,26 @@ #:use-module (gnu packages zip) #:use-module (srfi srfi-1)) =20 +(define-public c-graph + (package + (name "c-graph") + (version "2.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/c-graph/c-graph-" version + ".tar.gz")) + (sha256 (base32 + "1hlvpzrh7hzzf533diyfiabzskddi8zx92av9hwkjw3l46z7qv= 01")))) + (build-system gnu-build-system) + (inputs + `(("fortran" ,gfortran))) + (synopsis "Visualize and analyze convolution operations.") + (description + "GNU C-Graph demonstrates the theory of convolution underlying +engineering systems and signal analysis.") + (license license:gpl3+) + (home-page "http://www.gnu.org/software/c-graph/"))) + (define-public units (package (name "units") --=20 2.1.4