Skip to content

Commit

Permalink
dotty: 0.9.0-RC1 -> 0.10.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Nov 16, 2018
1 parent 5dea8fa commit 7017816
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/compilers/scala/dotty-bare.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, makeWrapper, jre }:
{ stdenv, fetchurl, makeWrapper, jre, ncurses }:

stdenv.mkDerivation rec {
version = "0.9.0-RC1";
version = "0.10.0-RC1";
name = "dotty-bare-${version}";

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

propagatedBuildInputs = [ jre ] ;
propagatedBuildInputs = [ jre ncurses.dev ] ;
buildInputs = [ makeWrapper ] ;

installPhase = ''
Expand All @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
fixupPhase = ''
bin_files=$(find $out/bin -type f ! -name common)
for f in $bin_files ; do
wrapProgram $f --set JAVA_HOME ${jre}
wrapProgram $f --set JAVA_HOME ${jre} --prefix PATH : '${ncurses.dev}/bin'
done
'';

Expand Down

0 comments on commit 7017816

Please sign in to comment.