guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: iverilog: Update to 11.0.


From: guix-commits
Subject: branch master updated: gnu: iverilog: Update to 11.0.
Date: Fri, 14 Jan 2022 06:59:44 -0500

This is an automated email from the git hooks/post-receive script.

dannym pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 923dcc3597 gnu: iverilog: Update to 11.0.
923dcc3597 is described below

commit 923dcc359731544db9ced910fac04f3e8546c88d
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Fri Jan 14 12:57:35 2022 +0100

    gnu: iverilog: Update to 11.0.
    
    * gnu/packages/fpga.scm (iverilog): Update to 11.0.
    [arguments]: Add make-flags.
---
 gnu/packages/fpga.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 90f958223b..3b2938aff0 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -26,6 +26,7 @@
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
+  #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system python)
@@ -97,16 +98,18 @@ formal verification.")
 (define-public iverilog
   (package
     (name "iverilog")
-    (version "10.3")
+    (version "11.0")
     (source (origin
               (method url-fetch)
               (uri
-               (string-append "ftp://ftp.icarus.com/pub/eda/verilog/v10/";
+               (string-append "ftp://ftp.icarus.com/pub/eda/verilog/v11/";
                               "verilog-" version ".tar.gz"))
               (sha256
                (base32
-                "1vv88ckvfwq7mrysyjnilsrcrzm9d173kp9w5ivwh6rdw7klbgc6"))))
+                "1mamlrkpb2gb00g7xdddaknrvwi4jr4ng6cfjhwngzk3ddhqaiym"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
     (native-inputs
      (list flex bison ghostscript))   ; ps2pdf
     (home-page "http://iverilog.icarus.com/";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]