systemc: Init at 2.3.3
This commit is contained in:
parent
319a0fc6b4
commit
777ba23c17
2 changed files with 20 additions and 0 deletions
18
pkgs/applications/science/electronics/systemc/default.nix
Normal file
18
pkgs/applications/science/electronics/systemc/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11254,6 +11254,8 @@ with pkgs;
|
||||||
|
|
||||||
sysbench = callPackage ../development/tools/misc/sysbench {};
|
sysbench = callPackage ../development/tools/misc/sysbench {};
|
||||||
|
|
||||||
|
systemc = callPackage ../applications/science/electronics/systemc { };
|
||||||
|
|
||||||
system-config-printer = callPackage ../tools/misc/system-config-printer {
|
system-config-printer = callPackage ../tools/misc/system-config-printer {
|
||||||
autoreconfHook = buildPackages.autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
libxml2 = libxml2Python;
|
libxml2 = libxml2Python;
|
||||||
|
|
Loading…
Reference in a new issue