nixpkgs/pkgs/development/tools/ammonite/default.nix
2017-10-23 14:43:28 -04:00

44 lines
1.3 KiB
Nix

{ stdenv, lib, fetchurl, makeWrapper, jre
, disableRemoteLogging ? true
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "ammonite-${version}";
version = "1.0.3";
scalaVersion = "2.12";
src = fetchurl {
url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}";
sha256 = "0pa60fy5skx781hwspaskisv8zx0sfddkvprgmwkhfdpz892srwm";
};
propagatedBuildInputs = [ jre ] ;
buildInputs = [ makeWrapper ] ;
phases = "installPhase";
installPhase = ''
mkdir -p $out/bin
cp ${src} $out/bin/amm
chmod +x $out/bin/amm
wrapProgram $out/bin/amm \
${optionalString disableRemoteLogging "--add-flags --no-remote-logging"} \
--prefix PATH ":" ${jre}/bin ;
'';
meta = {
description = "Improved Scala REPL";
longDescription = ''
The Ammonite-REPL is an improved Scala REPL, re-implemented from first principles.
It is much more featureful than the default REPL and comes
with a lot of ergonomic improvements and configurability
that may be familiar to people coming from IDEs or other REPLs such as IPython or Zsh.
'';
homepage = http://www.lihaoyi.com/Ammonite/;
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainer = [ lib.maintainers.nequissimus ];
};
}