Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 717cd25e8655
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8a58559096da
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 7, 2020

  1. scala: 2.13.2 -> 2.13.3

    r-ryantm committed Jul 7, 2020
    Copy the full SHA
    175e915 View commit details
  2. Merge pull request #92569 from r-ryantm/auto-update/scala

    scala: 2.13.2 -> 2.13.3
    Ma27 authored Jul 7, 2020
    Copy the full SHA
    8a58559 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/scala/2.13.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/scala/2.13.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:

stdenv.mkDerivation rec {
name = "scala-2.13.2";
name = "scala-2.13.3";

src = fetchurl {
url = "https://www.scala-lang.org/files/archive/${name}.tgz";
sha256 = "1gvdxwlhgjmn8i5a8kcp19700rscjq9ylb35p8vj7nqys94zjkap";
sha256 = "0zv9w9f6g2cfydsvp8mqcfgv2v3487xp4ca1qndg6v7jrhdp7wy9";
};

propagatedBuildInputs = [ jre ] ;