3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/ammonite/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2019-09-18 11:36:16 +01:00
{ stdenv, fetchurl, jre
, disableRemoteLogging ? true
}:
2016-10-16 23:56:28 +01:00
with stdenv.lib;
2019-09-18 11:36:16 +01:00
let
common = { scalaVersion, sha256 }:
2016-10-16 23:56:28 +01:00
stdenv.mkDerivation rec {
pname = "ammonite";
2019-10-21 14:14:35 +01:00
version = "1.7.4";
2016-10-16 23:56:28 +01:00
src = fetchurl {
url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}";
2019-09-18 11:36:16 +01:00
inherit sha256;
2016-10-16 23:56:28 +01:00
};
phases = "installPhase";
installPhase = ''
2019-09-18 11:36:16 +01:00
install -Dm755 ${src} $out/bin/amm
sed -i '0,/java/{s|java|${jre}/bin/java|}' $out/bin/amm
2018-05-22 02:36:52 +01:00
'' + optionalString (disableRemoteLogging) ''
2019-09-18 11:36:16 +01:00
sed -i '0,/ammonite.Main/{s|ammonite.Main|ammonite.Main --no-remote-logging|}' $out/bin/amm
sed -i '1i #!/bin/sh' $out/bin/amm
2016-10-16 23:56:28 +01: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/;
2019-09-18 11:36:16 +01:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.nequissimus ];
2016-10-16 23:56:28 +01:00
};
2019-09-18 11:36:16 +01:00
};
in {
2019-10-21 14:14:35 +01:00
ammonite_2_12 = common { scalaVersion = "2.12"; sha256 = "0d2xjhxrly4cv5fpjv1i0a74ayij7c2x5sb6lsgzxpq7jj0bk1m6"; };
ammonite_2_13 = common { scalaVersion = "2.13"; sha256 = "0hmdizzf8l8i07vdfik24iby39xg1vjfp1cwgjpbcmxv8klf50b0"; };
2016-10-16 23:56:28 +01:00
}