GNU bug report logs -
#78011
[PATCH electronics-team] gnu: Add opensta.
Previous Next
Reported by: Cayetano Santos <csantosb <at> inventati.org>
Date: Wed, 23 Apr 2025 13:19:02 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#78011: [PATCH electronics-team] gnu: Add opensta.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 78011 <at> debbugs.gnu.org.
--
78011: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=78011
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hello!
Cayetano Santos <csantosb <at> inventati.org> writes:
>>sam. 26 avril 2025 at 21:44, Maxim Cournoyer <maxim.cournoyer <at> gmail.com> wrote:
>
>> Please use the -DBUILD_SHARED_LIBRARY=ON #:configure-flags I suggested
>> to reduce the output size, as suggested in my original review.
>
> Sorry about that ! For some reason, I completely missed your second
> reply: v3 sent, hopefully, including all suggestions.
>
> Thanks for your patience !
No worries, I just applied your v3 as b8e2d556d9b. Thanks for your
patience as well!
--
Thanks,
Maxim
[Message part 3 (message/rfc822, inline)]
* gnu/packages/electronics.scm (opensta): New variable.
Change-Id: If753078958535971c8ab3fd7c934d19d24f0a2f7
---
gnu/packages/electronics.scm | 41 ++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 12e44f234a..1b733a5a1f 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -38,6 +38,7 @@ (define-module (gnu packages electronics)
#:use-module (gnu packages algebra)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
+ #:use-module (gnu packages bison)
#:use-module (gnu packages boost)
#:use-module (gnu packages c)
#:use-module (gnu packages check)
@@ -45,6 +46,7 @@ (define-module (gnu packages electronics)
#:use-module (gnu packages compression)
#:use-module (gnu packages documentation)
#:use-module (gnu packages embedded)
+ #:use-module (gnu packages flex)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
@@ -53,6 +55,7 @@ (define-module (gnu packages electronics)
#:use-module (gnu packages libftdi)
#:use-module (gnu packages libusb)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages maths)
#:use-module (gnu packages m4)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
@@ -65,6 +68,7 @@ (define-module (gnu packages electronics)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages stb)
#:use-module (gnu packages swig)
+ #:use-module (gnu packages tcl)
#:use-module (gnu packages tls)
#:use-module (gnu packages toolkits)
#:use-module (gnu packages version-control))
@@ -415,6 +419,43 @@ (define-public openboardview
@end itemize")
(license license:expat)))
+(define-public opensta
+ (let ((commit "400c473fe384773a4788ee8378238462b4291fe3")
+ (revision "0"))
+ (package
+ (name "opensta")
+ (version (git-version "2.6.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/parallaxsw/OpenSTA/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "091np9jnhfzggc7f5q9kx7kfa1fxjrj7d1mnw6q4gniqbs5hwrg5"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f ; no tests
+ #:out-of-source? #t
+ #:configure-flags
+ #~(list
+ (string-append "-DCUDD_DIR=" #$cudd)
+ (string-append "-DCMAKE_INSTALL_PREFIX=" #$output))
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "CXX=" #$(cxx-for-target))
+ (string-append "PREFIX=" #$output))))
+ (native-inputs (list swig bison flex))
+ (inputs (list tcl tcllib zlib cudd eigen))
+ (synopsis "Parallax Static Timing Analyzer")
+ (description
+ "OpenSTA is a gate level static timing verifier. As a stand-alone executable
+it can be used to verify the timing of a design using standard file formats.")
+ (home-page "https://github.com/parallaxsw/OpenSTA/")
+ (license license:gpl3+))))
+
(define-public pulseview
(package
(name "pulseview")
base-commit: 699ce22ed812cf8cfcdd8d0341829f8fac2c864a
--
2.49.0
This bug report was last modified 21 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.