lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 26 lines 706 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "systemc"; 5 version = "2.3.4"; 6 7 src = fetchFromGitHub { 8 owner = "accellera-official"; 9 repo = pname; 10 rev = version; 11 sha256 = "0sj8wlkp68cjhmkd9c9lvm3lk3sckczpz7w9vby64inc1f9fnf0b"; 12 }; 13 14 enableParallelBuilding = true; 15 nativeBuildInputs = [ autoreconfHook ]; 16 17 configureFlags = [ "--with-unix-layout" ]; 18 19 meta = with lib; { 20 description = "The language for System-level design, modeling and verification"; 21 homepage = "https://systemc.org/"; 22 license = licenses.asl20; 23 platforms = platforms.linux; 24 maintainers = with maintainers; [ victormignot amiloradovsky ]; 25 }; 26}