janet 1.27.0 -> 1.28.0 https://github.com/janet-lang/janet/releases attrpath: janet Checking auto update branch... No auto update branch exists Old version 1.27.0" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, meson, ninja }: stdenv.mkDerivation rec { pname = "janet"; version = "1.28.0"; src = fetchFromGitHub { owner = "janet-lang"; repo = pname; rev = "v${version}"; sha256 = "sha256-QfW17BDP+xa+Qy9FuIioe8UY6BBGsvbSyyz6GFODg5g="; }; postPatch = '' substituteInPlace janet.1 \ --replace /usr/local/ $out/ ''; nativeBuildInputs = [ meson ninja ]; mesonFlags = [ "-Dgit_hash=release" ]; doCheck = true; doInstallCheck = true; installCheckPhase = '' $out/bin/janet -e '(+ 1 2 3)' ''; meta = with lib; { description = "Janet programming language"; homepage = "https://janet-lang.org/"; license = licenses.mit; maintainers = with maintainers; [ andrewchambers peterhoeg ]; platforms = platforms.all; }; }