gnu: nextpnr: Remove let bindings.

* gnu/packages/electronics.scm (nextpnr): Use git tags, omit commit and
revision bindings.

Change-Id: I505c8676890f23b1df5a57a63c8f574eda0681de
Signed-off-by: Gabriel Wicki <gabriel@erlikon.ch>
This commit is contained in:
Cayetano Santos 2025-09-17 15:06:53 +02:00 committed by Gabriel Wicki
parent ea92fb0c49
commit 09e7d188dd
No known key found for this signature in database
GPG key ID: CC98E9F04330FD7F

View file

@ -722,9 +722,6 @@ which allows one to install the M8 firmware on any Teensy.")
license:zlib))))
(define-public nextpnr
;; Necessary for compatibility with latest apycula.
(let ((commit "9715a1d56580d0652b4a90d58eb4096ba537e3ce")
(revision "0"))
(package
(name "nextpnr")
(version "0.9")
@ -733,7 +730,7 @@ which allows one to install the M8 firmware on any Teensy.")
(method git-fetch)
(uri (git-reference
(url "https://github.com/YosysHQ/nextpnr/")
(commit commit)
(commit (string-append "nextpnr-" version))
;; XXX: Fetch some bundled libraries such as QtPropertyBrowser,
;; json11 and python-console, which have custom modifications or
;; no longer have their original upstream.
@ -828,7 +825,7 @@ which allows one to install the M8 firmware on any Teensy.")
(synopsis "Place-and-Route tool for FPGAs")
(description "Nextpnr is a portable FPGA place and route tool.")
(home-page "https://github.com/YosysHQ/nextpnr/")
(license license:isc))))
(license license:isc)))
(define-public nextpnr-ice40
(deprecated-package "nextpnr-ice40" nextpnr))