tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
scala_3: 3.3.0 -> 3.3.1
kashw2
2 years ago
8ff38d74
fa7ea4f8
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
scala
bare.nix
+3
-3
pkgs/development/compilers/scala/bare.nix
···
1
1
{ lib, stdenv, fetchurl, makeWrapper, jre, ncurses }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
version = "3.3.0";
4
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
9
-
hash = "sha256-Bk7lCKjjucaYQxAsg2qomJQUgCK/N688JqlGTfoQFHU=";
9
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
40
-
maintainers = [maintainers.karolchmist maintainers.virusdave];
40
40
+
maintainers = with maintainers; [ karolchmist virusdave kashw2 ];
41
41
};
42
42
}