diff options
| author | Thomas Kramer <thomas@f-si.org> | 2026-01-31 12:02:50 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-01 19:39:49 +0100 |
| commit | 1ac93551dbbea896f4a7a48de3e915ab4e120639 (patch) | |
| tree | 32797d49c30b8865a570dfad2dee29eafcfb575c /gnu | |
| parent | 8c5b7945607e632c59a9a53388afab8dcc1f4f80 (diff) | |
gnu: Add qrouter.
* gnu/packages/electronics.scm (qrouter): New variable
Merge guix/guix!6038
Change-Id: I78c6c622ba79beefd995654481739fc19f3cb6a0
Modified-by: Cayetano Santos <csantosb@inventati.org>
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/electronics.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index c3977333dba..25b345a72b9 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") |
