Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

scala_3: 3.3.0 -> 3.3.1

kashw2 8ff38d74 fa7ea4f8

+3 -3
+3 -3
pkgs/development/compilers/scala/bare.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, jre, ncurses }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.3.0"; 4 + version = "3.3.1"; 5 5 pname = "scala-bare"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz"; 9 - hash = "sha256-Bk7lCKjjucaYQxAsg2qomJQUgCK/N688JqlGTfoQFHU="; 9 + hash = "sha256-EcDqD3HEOvD7GzVd3kFL/vAaYMFyk2deI6RNAlJpzRU="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ jre ncurses.dev ] ; ··· 37 37 homepage = "http://dotty.epfl.ch/"; 38 38 license = licenses.bsd3; 39 39 platforms = platforms.all; 40 - maintainers = [maintainers.karolchmist maintainers.virusdave]; 40 + maintainers = with maintainers; [ karolchmist virusdave kashw2 ]; 41 41 }; 42 42 }