nixpkgs/pkgs/applications/science/electronics/nvc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.1 KiB
Nix
Raw Normal View History

2022-07-08 05:22:45 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, check
, flex
, pkg-config
, which
, elfutils
, libelf
, llvm
, zlib
}:
stdenv.mkDerivation rec {
pname = "nvc";
2022-10-18 00:21:26 +00:00
version = "1.7.2";
2022-07-08 05:22:45 +00:00
src = fetchFromGitHub {
owner = "nickg";
repo = pname;
rev = "r${version}";
2022-10-18 00:21:26 +00:00
sha256 = "sha256-7N11S7OiAogyuNqrf7R5NZyVbiXgXxJ5t6lwBzL0YAU=";
2022-07-08 05:22:45 +00:00
};
nativeBuildInputs = [
autoreconfHook
check
flex
pkg-config
which
];
buildInputs = [
llvm
zlib
] ++ [
(if stdenv.isLinux then elfutils else libelf)
];
2022-08-10 23:27:57 +00:00
# TODO: recheck me on next release
postPatch = lib.optionalString stdenv.isLinux ''
sed -i "/vhpi4/d" test/regress/testlist.txt
2022-07-08 05:22:45 +00:00
'';
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 ];
};
}