Merge pull request #27133 from NeQuissimus/ammonite_1_0_0

ammonite: 0.9.9 -> 1.0.0
This commit is contained in:
Tim Steinbach 2017-07-07 09:01:26 -04:00 committed by GitHub
commit 8ab9f99309
2 changed files with 22 additions and 2 deletions

20
nixos/tests/ammonite.nix Normal file
View File

@ -0,0 +1,20 @@
import ./make-test.nix ({ pkgs, ...} : {
name = "ammonite";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ nequissimus ];
};
nodes = {
amm =
{ config, pkgs, ... }:
{
environment.systemPackages = [ pkgs.ammonite ];
};
};
testScript = ''
startAll;
$amm->succeed("amm -c 'val foo = 21; println(foo * 2)' | grep 42")
'';
})

View File

@ -5,12 +5,12 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "ammonite-${version}";
version = "0.9.9";
version = "1.0.0";
scalaVersion = "2.12";
src = fetchurl {
url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}";
sha256 = "0qiqy681y1w21gjxw30kn44vxh9615j3825v06aq690p56w3rc63";
sha256 = "0d74b3aasgg4ap5ishzzm4jbf1k4dxv7gzd88d69miyapsaa4p0c";
};
propagatedBuildInputs = [ jre ] ;