Merge pull request #190087 from victormignot/systemc

systemc: Init at 2.3.3
This commit is contained in:
Jonas Heinrich 2022-09-07 21:16:40 +02:00 committed by GitHub
commit eab3e4bffa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View File

@ -13868,6 +13868,15 @@
githubId = 245573;
name = "Dmitry Kalinkin";
};
victormignot = {
email = "victor.mignot@protonmail.com";
github = "victormignot";
githubId = 58660971;
name = "Victor Mignot";
keys = [{
fingerprint = "CA5D F91A D672 683A 1F65 BBC9 0317 096D 20E0 067B";
}];
};
vidbina = {
email = "vid@bina.me";
github = "vidbina";

View File

@ -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 ];
};
}

View File

@ -11305,6 +11305,8 @@ with pkgs;
sysbench = callPackage ../development/tools/misc/sysbench {};
systemc = callPackage ../applications/science/electronics/systemc { };
system-config-printer = callPackage ../tools/misc/system-config-printer {
autoreconfHook = buildPackages.autoreconfHook269;
libxml2 = libxml2Python;