nvc 1.9.2 -> 1.10.0 https://repology.org/project/nvc/versions attrpath: nvc Checking auto update branch... No auto update branch exists Old version 1.9.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , check , flex , pkg-config , which , elfutils , libelf , libffi , llvm , zlib , zstd }: stdenv.mkDerivation rec { pname = "nvc"; version = "1.10.0"; src = fetchFromGitHub { owner = "nickg"; repo = "nvc"; rev = "r${version}"; hash = "sha256-WwO46x6McV18ebGFjXQ8fvqRh6ih1Wt5JTbfTxVWTi0="; }; nativeBuildInputs = [ autoreconfHook check flex pkg-config which ]; buildInputs = [ libffi llvm zlib zstd ] ++ lib.optionals stdenv.isLinux [ elfutils ] ++ lib.optionals (!stdenv.isLinux) [ libelf ]; 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; maintainers = with maintainers; [ wegank ]; platforms = platforms.unix; }; }