diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-03-14 12:57:07 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-14 12:58:49 +0100 |
| commit | d5d74749926208937a7c9e9f2753800a1c270b86 (patch) | |
| tree | 27033ce614bbc68582ff9301881f1380f9244402 /gnu/packages | |
| parent | e15407fc8e505eac4eb3daaed0ddcedbada51b81 (diff) | |
gnu: horizon-eda: Move to electronics.
* gnu/packages/engineering.scm (horizon-eda): Move from here ...
* gnu/packages/electronics.scm: ... to here.
Change-Id: I8ec6ebcc5bf33dd69a0bb8d6aafcb5ba4031f150
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/electronics.scm | 56 | ||||
| -rw-r--r-- | gnu/packages/engineering.scm | 51 |
2 files changed, 55 insertions, 52 deletions
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index 02220acf585..2eef5148c3e 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -14,7 +14,7 @@ ;;; Copyright © 2022, 2024, 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org> ;;; Copyright © 2019 Amin Bandali <bandali@gnu.org> -;;; Copyright © 2020, 2021, 2022, 2023, 2024, 2025 Vinicius Monego <monego@posteo.net> +;;; Copyright © 2020-2025 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2021 Andrew Miloradovsky <andrew@interpretmath.pw> ;;; Copyright © 2022 Christian Gelinek <cgelinek@radlogic.com.au> ;;; Copyright © 2022 jgart <jgart@dismail.de> @@ -64,6 +64,7 @@ #:use-module (gnu packages) #:use-module (gnu packages algebra) #:use-module (gnu packages autotools) + #:use-module (gnu packages backup) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages bison) @@ -109,6 +110,8 @@ #:use-module (gnu packages maths) #:use-module (gnu packages mpi) #:use-module (gnu packages multiprecision) + #:use-module (gnu packages networking) + #:use-module (gnu packages pdf) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pretty-print) @@ -728,6 +731,57 @@ Simulator Trace} files.") ;; Exception against free government use in tcl_np.c and tcl_np.h. (license (list license:gpl2+ license:expat license:tcl/tk))))) +(define-public horizon-eda + (package + (name "horizon-eda") + (version "2.7.0") + ;; TODO: try to unbundle some of the 3rd parties. + ;; We have packages for nlohmann-json, range-v3, catch2 and clipper. + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/horizon-eda/horizon") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1sq1d2x9wq168cz91l2rd93gnlq5scknb45bi1njqqcw3jjjhsk3")))) + (build-system meson-build-system) + (arguments + (list + #:tests? #f ; no tests + #:glib-or-gtk? #t)) + (native-inputs (list cmake-minimal ;; OpenCASCADE is only found by cmake + `(,glib "bin") + gobject-introspection + pkg-config)) + (inputs (list boost + cairomm + cppzmq + curl + glib + glibmm + glm + gsettings-desktop-schemas + gtk+ + gtkmm-3 + libarchive + libgit2-glib + librsvg + libspnav + libzip + opencascade-occt + podofo + sqlite + `(,util-linux "lib") + zeromq)) + (home-page "https://horizon-eda.org/") + (synopsis "Electronic Design Automation package") + (description "Horizon EDA is an Electronic Design Automation package +supporting an integrated end-to-end workflow for printed circuit board design +including parts management and schematic entry.") + (license license:gpl3+))) + (define-public iverilog (package (name "iverilog") diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 12cccebadce..9148c1d0ef8 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -1407,57 +1407,6 @@ in the context of per-cpu data. The library offers ABI headers to interface with the kernel and various utilities such as per-cpu counters.") (license (list license:lgpl2.1 license:expat))))) -(define-public horizon-eda - (package - (name "horizon-eda") - (version "2.7.0") - ;; TODO: try to unbundle some of the 3rd parties. - ;; We have packages for nlohmann-json, range-v3, catch2 and clipper. - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/horizon-eda/horizon") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1sq1d2x9wq168cz91l2rd93gnlq5scknb45bi1njqqcw3jjjhsk3")))) - (build-system meson-build-system) - (arguments - (list - #:tests? #f ; no tests - #:glib-or-gtk? #t)) - (native-inputs (list cmake-minimal ;; OpenCASCADE is only found by cmake - `(,glib "bin") - gobject-introspection - pkg-config)) - (inputs (list boost - cairomm - cppzmq - curl - glib - glibmm - glm - gsettings-desktop-schemas - gtk+ - gtkmm-3 - libarchive - libgit2-glib - librsvg - libspnav - libzip - opencascade-occt - podofo - sqlite - `(,util-linux "lib") - zeromq)) - (home-page "https://horizon-eda.org/") - (synopsis "Electronic Design Automation package") - (description "Horizon EDA is an Electronic Design Automation package -supporting an integrated end-to-end workflow for printed circuit board design -including parts management and schematic entry.") - (license license:gpl3+))) - (define-public linsmith (package (name "linsmith") |
