nixpkgs/pkgs/development/tools/ammonite/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

2018-05-22 01:36:52 +00:00
{ stdenv, lib, fetchurl, makeWrapper, jre, gnused
, disableRemoteLogging ? true
}:
2016-10-16 22:56:28 +00:00
with stdenv.lib;
2016-10-16 22:56:28 +00:00
stdenv.mkDerivation rec {
pname = "ammonite";
2019-09-12 12:06:57 +00:00
version = "1.7.1";
scalaVersion = "2.12";
2016-10-16 22:56:28 +00:00
src = fetchurl {
url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}";
2019-09-12 12:06:57 +00:00
sha256 = "0isg9flnzc2ldbx6q0lg0xyg9lnvqkd8qhgfln8p1hbzdq0n6jd0";
2016-10-16 22:56:28 +00:00
};
propagatedBuildInputs = [ jre ] ;
2018-05-22 01:36:52 +00:00
buildInputs = [ makeWrapper gnused ] ;
2016-10-16 22:56:28 +00:00
phases = "installPhase";
installPhase = ''
mkdir -p $out/bin
cp ${src} $out/bin/amm
chmod +x $out/bin/amm
2018-05-22 01:36:52 +00:00
${gnused}/bin/sed -i '0,/java/{s|java|${jre}/bin/java|}' $out/bin/amm
'' + optionalString (disableRemoteLogging) ''
${gnused}/bin/sed -i '0,/ammonite.Main/{s|ammonite.Main|ammonite.Main --no-remote-logging|}' $out/bin/amm
2016-10-16 22:56:28 +00:00
'';
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;
maintainers = [ lib.maintainers.nequissimus ];
2016-10-16 22:56:28 +00:00
};
}