nixpkgs/pkgs/development/compilers/scala-runners/default.nix
Harrison Houghton 64f7698fc2 scala-runners: unstable-2020-02-02 -> unstable-2021-07-28
This brings support for Scala 3 (Dotty) with the `-3` flag.
2021-08-08 18:16:50 -04:00

33 lines
982 B
Nix

{ stdenv, lib, fetchFromGitHub, jre, coursier }:
stdenv.mkDerivation rec {
pname = "scala-runners";
version = "unstable-2021-07-28";
src = fetchFromGitHub {
repo = pname;
owner = "dwijnand";
rev = "9bf096ca81f4974d7327e291eac291e22b344a8f";
sha256 = "032fds5nr102h1lc81n9jc60jmxzivi4md4hcjrlqn076hfhj4ax";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/bin $out/lib
sed -ie "s| cs | ${coursier}/bin/coursier |" scala-runner
cp scala-runner $out/lib
ln -s $out/lib/scala-runner $out/bin/scala
ln -s $out/lib/scala-runner $out/bin/scalac
ln -s $out/lib/scala-runner $out/bin/scalap
ln -s $out/lib/scala-runner $out/bin/scaladoc
'';
meta = with lib; {
homepage = "https://github.com/dwijnand/scala-runners";
description = "An alternative implementation of the Scala distribution's runners";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ hrhino ];
};
}