all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Danny Milosavljevic <dannym@scratchpost.org>
To: guix-devel@gnu.org
Subject: [PATCH v2 2/5] gnu: Add iverilog.
Date: Thu, 18 Aug 2016 17:18:30 +0200	[thread overview]
Message-ID: <20160818151833.29540-3-dannym@scratchpost.org> (raw)
In-Reply-To: <20160818151833.29540-1-dannym@scratchpost.org>

[-- Attachment #1: Type: text/plain, Size: 180 bytes --]

gnu: Add iverilog.

* gnu/packages/fpga.scm (iverilog): New variable.
---
 gnu/packages/fpga.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-gnu-Add-iverilog.patch --]
[-- Type: text/x-patch; name="0002-gnu-Add-iverilog.patch", Size: 1740 bytes --]

diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index f757a28..1d1c981 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -73,3 +73,38 @@
 formal verification.")
     (license
       (license:non-copyleft "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants")))))
+
+(define-public iverilog
+  (package
+    (name "iverilog")
+    (version "10.1.1")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append "ftp://ftp.icarus.com/pub/eda/verilog/v10/"
+                              "verilog-" version ".tar.gz"))
+              (sha256
+                (base32
+                   "1nnassxvq30rnn0r2p85rkb2zwxk97p109y13x3vr365wzgpbapx"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)
+       ("ghostscript" ,ghostscript))) ; ps2pdf
+    (home-page "http://iverilog.icarus.com/")
+    (synopsis "FPGA Verilog simulation and synthesis tool")
+    (description "Icarus Verilog is a Verilog simulation and synthesis tool.
+It operates as a compiler, compiling source code written in Verilog
+(IEEE-1364) into some target format.
+For batch simulation, the compiler can generate an intermediate form
+called vvp assembly.
+This intermediate form is executed by the ``vvp'' command.
+For synthesis, the compiler generates netlists in the desired format.")
+    ;; GPL2 only because of:
+    ;; - ./driver/iverilog.man.in
+    ;; - ./iverilog-vpi.man.in
+    ;; - ./tgt-fpga/iverilog-fpga.man
+    ;; - ./vvp/vvp.man.in
+    ;; Otherwise would be GPL2+.
+    ;; You have to accept both GPL2 and LGPL2.1+.
+    (license (list license:gpl2 license:lgpl2.1+))))

  parent reply	other threads:[~2016-08-18 15:18 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-18 15:18 [PATCH v2 0/5] Add FPGA Tools Danny Milosavljevic
2016-08-18 15:18 ` [PATCH v2 1/5] gnu: Add abc Danny Milosavljevic
2016-08-18 15:18 ` Danny Milosavljevic [this message]
2016-08-18 15:18 ` [PATCH v2 3/5] gnu: Add yosys Danny Milosavljevic
2016-08-18 15:18 ` [PATCH v2 4/5] gnu: Add icestorm Danny Milosavljevic
2016-08-18 15:18 ` [PATCH v2 5/5] gnu: Add arachne-pnr Danny Milosavljevic
2016-09-07 20:21 ` [PATCH v2 0/5] Add FPGA Tools Danny Milosavljevic
2016-09-26  1:36 ` Theodoros Foradis
2016-09-26  7:37   ` Danny Milosavljevic
2016-09-26 10:53     ` Theodoros Foradis
2016-09-26 12:31       ` Danny Milosavljevic
2016-09-26  1:58 ` Theodoros Foradis
2016-09-26  7:38   ` Danny Milosavljevic
2016-10-04  8:48   ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160818151833.29540-3-dannym@scratchpost.org \
    --to=dannym@scratchpost.org \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.