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: 225eac1f3786
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f086e3ebde69
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 20, 2018

  1. scala: 2.12.4 -> 2.12.5

    (cherry picked from commit a429ae273ab752c61ed0c5dc955331617b9e7364)
    NeQuissimus committed Mar 20, 2018
    Copy the full SHA
    f086e3e View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/scala/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/scala/default.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.12.4";
name = "scala-2.12.5";

src = fetchurl {
url = "http://www.scala-lang.org/files/archive/${name}.tgz";
sha256 = "089a54qj8psh4jxqbrrwk5zahw13fyqq24l87s3031xa675a0m4m";
sha256 = "18bah2n3jfvc3cb10n4b3d6pwm3rwlqp7lrfvafjxccmlklzyqdj";
};

propagatedBuildInputs = [ jre ] ;