janet 1.29.1 -> 1.30.0 https://repology.org/project/janet-lang/versions attrpath: janet Checking auto update branch... No auto update branch exists Old version 1.29.1" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, meson, ninja }: stdenv.mkDerivation rec { pname = "janet"; version = "1.30.0"; src = fetchFromGitHub { owner = "janet-lang"; repo = pname; rev = "v${version}"; hash = "sha256-tkXEi8m7eroie/yP1kW0V6Ld5SCLA0/KmtHHI0fIsRI="; }; postPatch = '' substituteInPlace janet.1 \ --replace /usr/local/ $out/ ''; nativeBuildInputs = [ meson ninja ]; mesonBuildType = "release"; 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; }; }