nvc 1.10.0 -> 1.10.1 https://github.com/nickg/nvc/releases attrpath: nvc Checking auto update branch... No auto update branch exists Old version 1.10.0" 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.1"; src = fetchFromGitHub { owner = "nickg"; repo = "nvc"; rev = "r${version}"; hash = "sha256-7Kw9irZltNE8VRnIvVX786/u0QQtmRhV8pzpba0h1JY="; }; 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; }; }