mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
a03eab619f
This change allows to use the latest non-LTS scala version
11 lines
230 B
Nix
11 lines
230 B
Nix
{ scala, fetchurl }:
|
|
|
|
scala.bare.overrideAttrs (oldAttrs: {
|
|
version = "3.5.1";
|
|
pname = "scala-next";
|
|
src = fetchurl {
|
|
inherit (oldAttrs.src) url;
|
|
hash = "sha256-pRfoCXFVnnEh3zyB9HbUZK3qrQ94Gq3iXX2fWGS/l9o=";
|
|
};
|
|
})
|