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

Commits on Apr 24, 2020

  1. dotty: 0.20.0-RC1 -> 0.23.0-RC1

    Matthew Ess authored and Lassulus committed Apr 24, 2020
    Copy the full SHA
    929ba8d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/scala/dotty-bare.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/scala/dotty-bare.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, ncurses }:

stdenv.mkDerivation rec {
version = "0.20.0-RC1";
version = "0.23.0-RC1";
pname = "dotty-bare";

src = fetchurl {
url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
sha256 = "08qs3m32cbh6516gcwraa1b5k935awmjxls6kg6xll722hkdd9l6";
sha256 = "0c64dw2qp8mhgsll8viqaiy34wq1ablkbc4bi813a1r4nqg57sv0";
};

propagatedBuildInputs = [ jre ncurses.dev ] ;