flix 0.36.0 -> 0.37.0 https://repology.org/project/flix/versions attrpath: flix Checking auto update branch... No auto update branch exists Old version 0.36.0" not present in master derivation file with contents: { lib, fetchurl, stdenvNoCC, makeWrapper, jre }: stdenvNoCC.mkDerivation rec { pname = "flix"; version = "0.37.0"; src = fetchurl { url = "https://github.com/flix/flix/releases/download/v${version}/flix.jar"; sha256 = "sha256-7Hny8Y74Ihptto4LkvANStUAwBQBrNlwjQ5PqBwsbW0="; }; dontUnpack = true; nativeBuildInputs = [ makeWrapper ]; installPhase = '' runHook preInstall export JAR=$out/share/java/flix/flix.jar install -D $src $JAR makeWrapper ${jre}/bin/java $out/bin/flix \ --add-flags "-jar $JAR" runHook postInstall ''; meta = with lib; { description = "The Flix Programming Language"; homepage = "https://github.com/flix/flix"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.asl20; maintainers = with maintainers; [ athas ]; inherit (jre.meta) platforms; }; }