1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: nextpnr-ice40: Use gexps.

* gnu/packages/fpga.scm (nextpnr-ice40)[arguments]: Use gexps.

Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
Simon South 2023-01-27 15:34:30 -05:00 committed by Danny Milosavljevic
parent 57188b8b05
commit f1bd93f506
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -307,11 +307,12 @@ Includes the actual FTDI connector.")
yosys))
(build-system cmake-build-system)
(arguments
`(#:configure-flags `("-DARCH=ice40"
,(string-append "-DICEBOX_ROOT="
(assoc-ref %build-inputs "icestorm")
"/share/icebox"))
#:tests? #f))
(list #:configure-flags
#~(list "-DARCH=ice40"
(string-append "-DICEBOX_ROOT="
#$(this-package-input "icestorm")
"/share/icebox"))
#:tests? #f))
(synopsis "Place-and-Route tool for FPGAs")
(description "Nextpnr aims to be a vendor neutral, timing driven,
FOSS FPGA place and route tool.")