mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: iverilog: Update to 11.0.
* gnu/packages/fpga.scm (iverilog): Update to 11.0. [arguments]: Add make-flags.
This commit is contained in:
parent
0233583aa4
commit
923dcc3597
1 changed files with 6 additions and 3 deletions
|
@ -26,6 +26,7 @@ (define-module (gnu packages fpga)
|
|||
#: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 @@ (define-public abc
|
|||
(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/")
|
||||
|
|
Loading…
Reference in a new issue