gnu: iverilog: Update to 11.0.
* gnu/packages/fpga.scm (iverilog): Update to 11.0. [arguments]: Add make-flags.
parent
0233583aa4
commit
923dcc3597
|
@ -26,6 +26,7 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
@ -97,16 +98,18 @@ formal verification.")
|
||||||
(define-public iverilog
|
(define-public iverilog
|
||||||
(package
|
(package
|
||||||
(name "iverilog")
|
(name "iverilog")
|
||||||
(version "10.3")
|
(version "11.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(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"))
|
"verilog-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vv88ckvfwq7mrysyjnilsrcrzm9d173kp9w5ivwh6rdw7klbgc6"))))
|
"1mamlrkpb2gb00g7xdddaknrvwi4jr4ng6cfjhwngzk3ddhqaiym"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list flex bison ghostscript)) ; ps2pdf
|
(list flex bison ghostscript)) ; ps2pdf
|
||||||
(home-page "http://iverilog.icarus.com/")
|
(home-page "http://iverilog.icarus.com/")
|
||||||
|
|
Reference in New Issue