From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36422) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKScL-00024m-JB for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dKScI-0000zS-SQ for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41212) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dKScI-0000zM-Pa for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dKScI-00041J-K4 for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:02 -0400 Subject: [bug#27344] [PATCH 02/12] gnu: Add libctl. Resent-Message-ID: From: Theodoros Foradis Date: Mon, 12 Jun 2017 19:52:16 +0300 Message-Id: <20170612165226.1268-2-theodoros.for@openmailbox.org> In-Reply-To: <20170612165226.1268-1-theodoros.for@openmailbox.org> References: <20170612165226.1268-1-theodoros.for@openmailbox.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27344@debbugs.gnu.org * gnu/packages/engineering.scm (libctl): New variable. --- gnu/packages/engineering.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 1311410b4..1bda7d494 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -849,3 +849,28 @@ harmonic inversion — given a discrete-time, finite-length signal that consists of finitely-many sinusoids (possibly exponentially decaying) in a given bandwidth, it determines the frequencies, decay constants, amplitudes, and phases of those sinusoids.") (license license:gpl2+))) + +(define-public libctl + (package + (name "libctl") + (version "3.2.2") + (source (origin + (method url-fetch) + (uri + (string-append + "http://ab-initio.mit.edu/libctl/libctl-" + version ".tar.gz")) + (sha256 + (base32 + "1g7gqybq20jhdnw5vg18bgbj9jz0408gfmjvs8b4xs30pic8pgca")))) + (build-system gnu-build-system) + (native-inputs + `(("fortran" ,gfortran))) + (inputs + `(("guile" ,guile-2.2))) + (home-page "http://ab-initio.mit.edu/wiki/index.php/Libctl") + (synopsis "Flexible control files implementation for scientific simulations") + (description + "Libctl is a Guile-based library implementing flexible control files +for scientific simulations.") + (license license:gpl2+))) -- 2.13.1