mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: yosys: Update to 0.47.
* gnu/packages/fpga.scm (yosys): Update to 0.47. [arguments]: Extend fix-paths phase. [native-inputs]: Add cxxopts. Change-Id: I14afed45261e7c4830fe91fe2ced8762eed54810
This commit is contained in:
parent
4bfe5fc584
commit
2bad254d03
1 changed files with 7 additions and 2 deletions
|
@ -45,6 +45,7 @@
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (gnu packages cpp)
|
||||||
#:use-module (gnu packages elf)
|
#:use-module (gnu packages elf)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
#:use-module (gnu packages gawk)
|
#:use-module (gnu packages gawk)
|
||||||
|
@ -149,7 +150,7 @@ For synthesis, the compiler generates netlists in the desired format.")
|
||||||
(define-public yosys
|
(define-public yosys
|
||||||
(package
|
(package
|
||||||
(name "yosys")
|
(name "yosys")
|
||||||
(version "0.46")
|
(version "0.47")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -157,7 +158,7 @@ For synthesis, the compiler generates netlists in the desired format.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1zj7vbpy6v1wn4p5cjs4hdjd467a1j1aj2qhs148bl2s6mzq3p86"))
|
"061sqb59vl61rshlwgv3n51x0fxd9x3lb6gfbdl7nzia8im7x0qm"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -178,6 +179,9 @@ For synthesis, the compiler generates netlists in the desired format.")
|
||||||
(search-input-file inputs "/bin/vcd2fst")))
|
(search-input-file inputs "/bin/vcd2fst")))
|
||||||
(substitute* '("./passes/cmds/show.cc"
|
(substitute* '("./passes/cmds/show.cc"
|
||||||
"./passes/cmds/viz.cc")
|
"./passes/cmds/viz.cc")
|
||||||
|
(substitute* "kernel/driver.cc"
|
||||||
|
(("^#include \"libs/cxxopts/include/cxxopts.hpp\"")
|
||||||
|
"#include <cxxopts.hpp>"))
|
||||||
(("exec xdot")
|
(("exec xdot")
|
||||||
(string-append "exec " (search-input-file inputs
|
(string-append "exec " (search-input-file inputs
|
||||||
"/bin/xdot")))
|
"/bin/xdot")))
|
||||||
|
@ -208,6 +212,7 @@ For synthesis, the compiler generates netlists in the desired format.")
|
||||||
`("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))))))))
|
`("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list bison
|
(list bison
|
||||||
|
cxxopts ;header-only library
|
||||||
flex
|
flex
|
||||||
gawk ; for the tests and "make" progress pretty-printing
|
gawk ; for the tests and "make" progress pretty-printing
|
||||||
iverilog ; for the tests
|
iverilog ; for the tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue