From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36424) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKScL-00024o-KK for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dKScK-00010O-Cv for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41215) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dKScK-00010G-9j for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dKScK-00041f-3Z for guix-patches@gnu.org; Mon, 12 Jun 2017 12:55:04 -0400 Subject: [bug#27344] [PATCH 05/12] gnu: Add adms. Resent-Message-ID: From: Theodoros Foradis Date: Mon, 12 Jun 2017 19:52:19 +0300 Message-Id: <20170612165226.1268-5-theodoros.for@openmailbox.org> In-Reply-To: <20170612165226.1268-1-theodoros.for@openmailbox.org> References: <20170612165226.1268-1-theodoros.for@openmailbox.org> 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 (adms): New variable. --- gnu/packages/engineering.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index f096de8f7..23754fb14 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -956,3 +956,29 @@ fully-vectorial and three-dimensional methods.") "Meep is a finite-difference time-domain (FDTD) simulation software package developed at MIT to model electromagnetic systems.") (license license:gpl2+))) + +(define-public adms + (package + (name "adms") + (version "2.3.6") + (source (origin + (method url-fetch) + (uri + (string-append + "mirror://sourceforge/mot-adms/adms-source/" + (string-take version 3) "/adms-" version ".tar.gz")) + (sha256 + (base32 + "1rn98l6jxcjhi6ai5f7p588khra9z80m0m0lql4n4sb7773fh1vk")))) + (build-system gnu-build-system) + (native-inputs + `(("flex" ,flex) + ("bison" ,bison))) + (home-page "https://sourceforge.net/projects/mot-adms") + (synopsis "Automatic device model synthesizer") + (description + "ADMS is a code generator that converts electrical compact device models +specified in high-level description language into ready-to-compile C code for +the API of spice simulators. Based on transformations specified in XML +language, ADMS transforms Verilog-AMS code into other target languages.") + (license license:gpl3))) -- 2.13.1