summaryrefslogtreecommitdiff
path: root/gnu/packages/fpga.scm
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-01-22 12:35:26 +0100
committerZheng Junjie <873216071@qq.com>2025-01-27 08:46:39 +0800
commit3806f55aa03a831be53cf2b520e4dacb049da178 (patch)
tree99123462410cc4a49a94f9af91f989cd50df9720 /gnu/packages/fpga.scm
parent73ed87b1676c76e46ccd1a53c4df0e5d4ac89628 (diff)
gnu: Remove arachne-pnr.
Arachne README.md states that this code is not maintained anymore, and advices to replace it by nextpnr. * gnu/packages/fpga.scm (arachne-pnr): Delete variable. Change-Id: I86a42633de96af04499106aabca43bfab4b35f24
Diffstat (limited to 'gnu/packages/fpga.scm')
-rw-r--r--gnu/packages/fpga.scm42
1 files changed, 0 insertions, 42 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index e393295c5f..ccb256bdc0 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -402,48 +402,6 @@ FPGA place and route tool.")
(home-page "https://github.com/YosysHQ/nextpnr")
(license license:expat))))
-(define-public arachne-pnr
- (let ((commit "840bdfdeb38809f9f6af4d89dd7b22959b176fdd")
- (revision "2"))
- (package
- (name "arachne-pnr")
- (version (string-append "0.0-" revision "-" (string-take commit 9)))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/YosysHQ/arachne-pnr")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1dqvjvgvsridybishv4pnigw9gypxh7r7nrqp9z9qq92v7c5rxzl"))))
- (build-system gnu-build-system)
- (arguments
- `(#:test-target "test"
- #:make-flags
- (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
- (string-append "ICEBOX=" (string-append
- (assoc-ref %build-inputs "icestorm")
- "/share/icebox")))
- #:phases (modify-phases %standard-phases
- (replace 'configure
- (lambda* (#:key outputs inputs #:allow-other-keys)
- (substitute* '("./tests/fsm/generate.py"
- "./tests/combinatorial/generate.py")
- (("#!/usr/bin/python") "#!/usr/bin/python2"))
- #t)))))
- (inputs
- (list icestorm))
- (native-inputs
- `(("git" ,git) ; for determining its own version string
- ("yosys" ,yosys) ; for tests
- ("perl" ,perl) ; for shasum
- ("python-2" ,python-2))) ; for tests
- (home-page "https://github.com/YosysHQ/arachne-pnr")
- (synopsis "Place-and-Route tool for FPGAs")
- (description "Arachne-PNR is a Place-and-Route Tool For FPGAs.")
- (license license:gpl2))))
-
(define-public gtkwave
(package
(name "gtkwave")