This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 1ac93551db gnu: Add qrouter.
1ac93551db is described below
commit 1ac93551dbbea896f4a7a48de3e915ab4e120639
Author: Thomas Kramer <[email protected]>
AuthorDate: Sat Jan 31 12:02:50 2026 +0100
gnu: Add qrouter.
* gnu/packages/electronics.scm (qrouter): New variable
Merge guix/guix!6038
Change-Id: I78c6c622ba79beefd995654481739fc19f3cb6a0
Modified-by: Cayetano Santos <[email protected]>
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/electronics.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index c3977333db..25b345a72b 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -3326,6 +3326,37 @@ automated testing of HDL code.")
;; subdirectories are under ASL.
(license (list license:mpl2.0 license:asl2.0))))
+(define-public qrouter
+ (package
+ (name "qrouter")
+ (version "1.4.90")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/RTimothyEdwards/qrouter")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1djqbli6bs0cqmcvrh3m9i94bncm3bvjs2iz5y7yszcagjq51wja"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f ;no tests
+ #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))
+ #:configure-flags
+ #~(list (string-append "--with-tcl=" #$(this-package-input "tcl"))
+ (string-append "--with-tk=" #$(this-package-input "tk")))))
+ (inputs (list libx11 libxt readline tcl tk))
+ (home-page "http://opencircuitdesign.com/qrouter/")
+ (synopsis "Visual @acronym{EDA, electronic design automation} router")
+ (description
+ "@code{qrouter} is an @acronym{ASIC, application specific integrated
+circuits}s tool intended for digital chip design. It creates the detailed
+routes for layouts of digital circuits and generates metal layers and vias.")
+ (license license:gpl2)))
+
(define-public qucsrflayout-cli
(package
(name "qucsrflayout-cli")