summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2016-10-16 19:02:12 -0400
committerGitHub <noreply@github.com>2016-10-16 19:02:12 -0400
commite3c3153dd0027fdc00e3c4692ff1fa286f8302e3 (patch)
treea185c1c93aa007fb2e726e84828015f062b719e2
parent5118c50ba359e4a6190b6dba3c35b342c67c7661 (diff)
parent4ed7db95ac8bedb88702e9eb3cda9e34ddae2157 (diff)
downloadnixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.tar
nixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.tar.gz
nixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.tar.bz2
nixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.tar.lz
nixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.tar.xz
nixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.tar.zst
nixpkgs-e3c3153dd0027fdc00e3c4692ff1fa286f8302e3.zip
Merge pull request #19608 from NeQuissimus/ammonite_0_7_8
ammonite-repl: init at 0.7.8
-rw-r--r--pkgs/development/tools/ammonite/default.nix37
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix
new file mode 100644
index 00000000000..7cb4afbc12e
--- /dev/null
+++ b/pkgs/development/tools/ammonite/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, lib, fetchurl, makeWrapper, jre }:
+
+stdenv.mkDerivation rec {
+  name = "ammonite-repl-${version}";
+  version = "0.7.8";
+
+  src = fetchurl {
+    url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${version}";
+    sha256 = "0s34p168h5c7ij61rbmaygb95r654yj4j0wh6qya53k4ywl32vkp";
+  };
+
+  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 --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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1ffa546dec0..a895ac620b8 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -395,6 +395,8 @@ in
 
   albert = qt5.callPackage ../applications/misc/albert {};
 
+  ammonite-repl = callPackage ../development/tools/ammonite {};
+
   amtterm = callPackage ../tools/system/amtterm {};
 
   analog = callPackage ../tools/admin/analog {};