gnu: yosys: Add dependency on z3.
* gnu/packages/fpga.scm (yosys): Add z3 to propagated-inputs.
This commit is contained in:
parent
313844d9dc
commit
85cdab64c6
|
@ -1,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;; Copyright © 2016 Theodoros Foradis <theodoros.for@openmailbox.org>
|
;;; Copyright © 2016, 2017 Theodoros Foradis <theodoros.for@openmailbox.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -36,6 +36,7 @@
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages libffi)
|
#:use-module (gnu packages libffi)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
|
#:use-module (gnu packages maths)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages ghostscript)
|
#:use-module (gnu packages ghostscript)
|
||||||
#:use-module (gnu packages gperf)
|
#:use-module (gnu packages gperf)
|
||||||
|
@ -198,6 +199,8 @@ For synthesis, the compiler generates netlists in the desired format.")
|
||||||
("psmisc" ,psmisc)
|
("psmisc" ,psmisc)
|
||||||
("xdot" ,xdot)
|
("xdot" ,xdot)
|
||||||
("abc" ,abc)))
|
("abc" ,abc)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("z3" ,z3))) ; should be in path for yosys-smtbmc
|
||||||
(home-page "http://www.clifford.at/yosys/")
|
(home-page "http://www.clifford.at/yosys/")
|
||||||
(synopsis "FPGA Verilog RTL synthesizer")
|
(synopsis "FPGA Verilog RTL synthesizer")
|
||||||
(description "Yosys synthesizes Verilog-2005.")
|
(description "Yosys synthesizes Verilog-2005.")
|
||||||
|
|
Loading…
Reference in New Issue