Merge pull request #180535 from wegank/nvc-init

nvc: init at 1.6.2
This commit is contained in:
Anderson Torres 2022-07-08 21:21:59 -03:00 committed by GitHub
commit e7c3f2b4de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,67 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, check
, flex
, pkg-config
, which
, elfutils
, libelf
, llvm
, zlib
}:
stdenv.mkDerivation rec {
pname = "nvc";
version = "1.6.2";
src = fetchFromGitHub {
owner = "nickg";
repo = pname;
rev = "r${version}";
sha256 = "sha256-BtUMpT1MKRFGRlIbCEGo4OBZ/r9es1VRmJdgmk1oZFQ=";
};
nativeBuildInputs = [
autoreconfHook
check
flex
pkg-config
which
];
buildInputs = [
llvm
zlib
] ++ [
(if stdenv.isLinux then elfutils else libelf)
];
# TODO: remove me on 1.7.0
postPatch = ''
sed -i "/vests22/d;/vhpi4/d" test/regress/testlist.txt
'';
preConfigure = ''
mkdir build
cd build
'';
configureScript = "../configure";
configureFlags = [
"--enable-vhpi"
"--disable-lto"
];
doCheck = true;
meta = with lib; {
description = "VHDL compiler and simulator";
homepage = "https://www.nickg.me.uk/nvc/";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ wegank ];
};
}

View File

@ -34017,6 +34017,8 @@ with pkgs;
ngspice = callPackage ../applications/science/electronics/ngspice { };
nvc = callPackage ../applications/science/electronics/nvc { };
openems = callPackage ../applications/science/electronics/openems {
qcsxcad = libsForQt5.qcsxcad;
};