about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-09-07 21:16:40 +0200
committerGitHub <noreply@github.com>2022-09-07 21:16:40 +0200
commiteab3e4bffacddb286afde688d1dba1edad15623d (patch)
tree53048ee13a772d744a02f565833daed7c33be38a /pkgs/applications/science
parent41df56c421f1409f483881f60331fd6764b37f23 (diff)
parent777ba23c173dbe8ce8f5decb203ffb989b0bc031 (diff)
Merge pull request #190087 from victormignot/systemc
systemc: Init at 2.3.3
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/electronics/systemc/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/science/electronics/systemc/default.nix b/pkgs/applications/science/electronics/systemc/default.nix
new file mode 100644
index 0000000000000..cdb489c6323b0
--- /dev/null
+++ b/pkgs/applications/science/electronics/systemc/default.nix
@@ -0,0 +1,18 @@
+{ lib, stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  pname = "systemc";
+  version = "2.3.3";
+
+  src = fetchurl {
+    url = "https://www.accellera.org/images/downloads/standards/systemc/${pname}-${version}.tar.gz";
+    sha256 = "5781b9a351e5afedabc37d145e5f7edec08f3fd5de00ffeb8fa1f3086b1f7b3f";
+  };
+
+  meta = with lib; {
+    description = "The language for System-level design, modeling and verification";
+    homepage    = "https://systemc.org/";
+    license     = licenses.asl20;
+    maintainers = with maintainers; [ victormignot ];
+  };
+}