[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#46069] [PATCH] gnu: Add SystemC.
From: |
Andrew Miloradovsky |
Subject: |
[bug#46069] [PATCH] gnu: Add SystemC. |
Date: |
Sun, 24 Jan 2021 08:07:40 +0000 |
* gnu/packages/fpga.scm (systemc): New variable.
---
gnu/packages/fpga.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 96ba0026f9..ff03b5270d 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -467,3 +467,32 @@ a hardware description and verification language. ")
(description "This package provides a VHDL compiler and simulator.")
(home-page "https://github.com/nickg/nvc")
(license license:gpl3+)))
+
+(define-public systemc
+ (package
+ (name "systemc")
+ (version "2.3.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://accellera.org/images/downloads/standards/"
+ name "/" name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0gvv3xmhiwx1izmzy06yslzqzh6ygrgmw53xqfmyvbz5a6ivk0ap"))))
+ (native-inputs `(("perl" ,perl)))
+ (build-system gnu-build-system)
+ (arguments '(#:configure-flags '("--enable-debug")))
+ (home-page "https://accellera.org/downloads/standards/systemc")
+ (synopsis "Library for event-driven simulation")
+ (description "Reference implementation of IEEE 1666-2011.
+A C++ library for modeling concurrent systems. It provides a notion of timing
+as well as an event-driven simulations environment. Due to it’s concurrent
+and sequential nature, SystemC allows the description and integration of
+complex hardware and software components. To some extent, SystemC can be seen
+as a Hardware Description Language. However, unlike VHDL or Verilog, SystemC
+provides sophisticated mechanisms that offer high abstraction levels on
+components interfaces. This, in turn, facilitates the integration of systems
+using different abstraction levels.")
+ ;; homepages.cae.wisc.edu/~ece734/SystemC/Esperan_SystemC_tutorial.pdf
+ (license license:asl2.0)))
--
2.30.0
- [bug#46069] [PATCH] gnu: Add SystemC.,
Andrew Miloradovsky <=