mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: xschem: Move to electronics.
* gnu/packages/engineering.scm (xschem): Move from here ... * gnu/packages/electronics.scm: ... to here. Change-Id: I7af66f9721d371241ec36604e960151177a663c1 Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
This commit is contained in:
parent
67c10061f2
commit
797bb4862d
2 changed files with 44 additions and 42 deletions
|
@ -8,6 +8,7 @@
|
||||||
;;; Copyright © 2024 Juliana Sims <juli@incana.org>
|
;;; Copyright © 2024 Juliana Sims <juli@incana.org>
|
||||||
;;; Copyright © 2025 Cayetano Santos <csantosb@inventati.org>
|
;;; Copyright © 2025 Cayetano Santos <csantosb@inventati.org>
|
||||||
;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
|
;;; Copyright © 2022 Konstantinos Agiannis <agiannis.kon@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -49,6 +50,7 @@
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
#:use-module (gnu packages fpga)
|
#:use-module (gnu packages fpga)
|
||||||
|
#:use-module (gnu packages gawk)
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
|
@ -74,6 +76,7 @@
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages toolkits)
|
#:use-module (gnu packages toolkits)
|
||||||
#:use-module (gnu packages version-control)
|
#:use-module (gnu packages version-control)
|
||||||
|
#:use-module (gnu packages xorg)
|
||||||
#:use-module (gnu packages xml))
|
#:use-module (gnu packages xml))
|
||||||
|
|
||||||
(define-public comedilib
|
(define-public comedilib
|
||||||
|
@ -793,6 +796,47 @@ design.")
|
||||||
to enforce it.")
|
to enforce it.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public xschem
|
||||||
|
(package
|
||||||
|
(name "xschem")
|
||||||
|
(version "3.4.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/StefanSchippers/xschem")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0g9qrzm2mjd7nfg8iyc5az2bs8n5gjv1mrjjdja5vn1yjia7pvy9"))))
|
||||||
|
(native-inputs (list flex bison pkg-config))
|
||||||
|
(inputs (list gawk
|
||||||
|
tcl
|
||||||
|
tk
|
||||||
|
libxpm
|
||||||
|
cairo
|
||||||
|
libxrender
|
||||||
|
libxcb)) ; Last 3 are optional, but good to have.
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(add-before 'build 'setenv
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(setenv "CC" #$(cc-for-target))
|
||||||
|
(invoke "./configure" (string-append "--prefix=" #$output)))))))
|
||||||
|
(synopsis "Hierarchical schematic editor")
|
||||||
|
(description
|
||||||
|
"Xschem is an X11 schematic editor written in C and focused on
|
||||||
|
hierarchical and parametric design. It can generate VHDL, Verilog or Spice
|
||||||
|
netlists from the drawn schematic, allowing the simulation of the circuit.")
|
||||||
|
(home-page "https://xschem.sourceforge.io/stefan/index.html")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public sigrok-cli
|
(define-public sigrok-cli
|
||||||
(package
|
(package
|
||||||
(name "sigrok-cli")
|
(name "sigrok-cli")
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
;;; Copyright © 2022 Olivier Dion <olivier.dion@polymtl.ca>
|
;;; Copyright © 2022 Olivier Dion <olivier.dion@polymtl.ca>
|
||||||
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
||||||
;;; Copyright © 2022 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
;;; Copyright © 2022 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
||||||
;;; Copyright © 2022 Konstantinos Agiannis <agiannis.kon@gmail.com>
|
|
||||||
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
|
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
|
||||||
;;; Copyright © 2022, 2024, 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2022, 2024, 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
;;; Copyright © 2022, 2025 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2022, 2025 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
@ -5165,47 +5164,6 @@ python bindings. It belongs to the Cura project from Ultimaker.")
|
||||||
generates G-Code for 3D printers.")
|
generates G-Code for 3D printers.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public xschem
|
|
||||||
(package
|
|
||||||
(name "xschem")
|
|
||||||
(version "3.4.7")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/StefanSchippers/xschem")
|
|
||||||
(commit version)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0g9qrzm2mjd7nfg8iyc5az2bs8n5gjv1mrjjdja5vn1yjia7pvy9"))))
|
|
||||||
(native-inputs (list flex bison pkg-config))
|
|
||||||
(inputs (list gawk
|
|
||||||
tcl
|
|
||||||
tk
|
|
||||||
libxpm
|
|
||||||
cairo
|
|
||||||
libxrender
|
|
||||||
libxcb)) ; Last 3 are optional, but good to have.
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
|
||||||
#~(modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(add-before 'build 'setenv
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(setenv "CC" #$(cc-for-target))
|
|
||||||
(invoke "./configure" (string-append "--prefix=" #$output)))))))
|
|
||||||
(synopsis "Hierarchical schematic editor")
|
|
||||||
(description
|
|
||||||
"Xschem is an X11 schematic editor written in C and focused on
|
|
||||||
hierarchical and parametric design. It can generate VHDL, Verilog or Spice
|
|
||||||
netlists from the drawn schematic, allowing the simulation of the circuit.")
|
|
||||||
(home-page "https://xschem.sourceforge.io/stefan/index.html")
|
|
||||||
(license license:gpl2+)))
|
|
||||||
|
|
||||||
(define-public bcnc
|
(define-public bcnc
|
||||||
(package
|
(package
|
||||||
(name "bcnc")
|
(name "bcnc")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue