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

85 lines
2.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, jre, nixosTests, writeScript, common-updater-scripts, git
, nixfmt, nix, coreutils, gnused, disableRemoteLogging ? true }:
2016-10-16 22:56:28 +00:00
with lib;
2019-09-18 10:36:16 +00:00
let
repo = "git@github.com:lihaoyi/Ammonite.git";
2020-10-08 14:23:39 +00:00
common = { scalaVersion, sha256 }:
stdenv.mkDerivation rec {
pname = "ammonite";
2020-11-27 05:38:46 +00:00
version = "2.3.8";
2016-10-16 22:56:28 +00:00
2020-10-08 14:23:39 +00:00
src = fetchurl {
url =
"https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}";
inherit sha256;
};
2016-10-16 22:56:28 +00:00
2020-10-08 14:23:39 +00:00
phases = "installPhase";
2016-10-16 22:56:28 +00:00
2020-10-08 14:23:39 +00:00
installPhase = ''
install -Dm755 $src $out/bin/amm
sed -i '0,/java/{s|java|${jre}/bin/java|}' $out/bin/amm
'' + optionalString (disableRemoteLogging) ''
2020-11-27 14:58:00 +00:00
sed -i "0,/ammonite.Main/{s|ammonite.Main'|ammonite.Main' --no-remote-logging|}" $out/bin/amm
2020-10-08 14:23:39 +00:00
sed -i '1i #!/bin/sh' $out/bin/amm
'';
2016-10-16 22:56:28 +00:00
passthru = {
tests = { inherit (nixosTests) ammonite; };
updateScript = writeScript "update.sh" ''
#!${stdenv.shell}
set -o errexit
PATH=${
lib.makeBinPath [
common-updater-scripts
coreutils
git
gnused
nix
nixfmt
]
}
oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion ${pname}" | tr -d '"')"
latestTag="$(git -c 'versionsort.suffix=-' ls-remote --exit-code --refs --sort='version:refname' --tags ${repo} '*.*.*' | tail --lines=1 | cut --delimiter='/' --fields=3)"
if [ "$oldVersion" != "$latestTag" ]; then
nixpkgs="$(git rev-parse --show-toplevel)"
default_nix="$nixpkgs/pkgs/development/tools/ammonite/default.nix"
update-source-version ${pname}_2_12 "$latestTag" --version-key=version --print-changes
sed -i "s|$latestTag|$oldVersion|g" "$default_nix"
update-source-version ${pname}_2_13 "$latestTag" --version-key=version --print-changes
nixfmt "$default_nix"
else
echo "${pname} is already up-to-date"
fi
'';
};
2020-10-08 14:23:39 +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 = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.nequissimus ];
};
};
2019-09-18 10:36:16 +00:00
in {
2020-10-08 14:23:39 +00:00
ammonite_2_12 = common {
scalaVersion = "2.12";
2020-11-27 05:38:46 +00:00
sha256 = "1kzk0437h2wd9jhwkvjkiaj6mscz4bh85iv266x9zz4zssb355hs";
2020-10-08 14:23:39 +00:00
};
ammonite_2_13 = common {
scalaVersion = "2.13";
2020-11-27 05:38:46 +00:00
sha256 = "0js84m6yqjd7d77md38z6nk3qzlm1ms8brzczaw05zq2c90pdbz7";
2020-10-08 14:23:39 +00:00
};
2016-10-16 22:56:28 +00:00
}