62 lines
2.0 KiB
Nix
62 lines
2.0 KiB
Nix
{ stdenv, lib, fetchurl, coursier, jdk, jre, python, makeWrapper }:
|
|
|
|
let
|
|
baseName = "bloop";
|
|
version = "1.0.0";
|
|
deps = stdenv.mkDerivation {
|
|
name = "${baseName}-deps-${version}";
|
|
buildCommand = ''
|
|
export COURSIER_CACHE=$(pwd)
|
|
${coursier}/bin/coursier fetch ch.epfl.scala:bloop-frontend_2.12:${version} \
|
|
-r "bintray:scalameta/maven" \
|
|
-r "bintray:scalacenter/releases" \
|
|
-r "https://oss.sonatype.org/content/repositories/staging" > deps
|
|
mkdir -p $out/share/java
|
|
cp $(< deps) $out/share/java/
|
|
'';
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "sha256";
|
|
outputHash = "0dgllwv9rjvpzvlbwwiynmfp15j2x48al7cb5rlmhq0an3q81hbh";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${baseName}-${version}";
|
|
nailgunCommit = "0c8b937b";
|
|
|
|
buildInputs = [ jdk makeWrapper deps ];
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
client = fetchurl {
|
|
url = "https://raw.githubusercontent.com/scalacenter/nailgun/${nailgunCommit}/pynailgun/ng.py";
|
|
sha256 = "0qjw4nsyb4cxg96jj1yv5c0ivcxvmscxxqfzll5w9p1pjb30bq0n";
|
|
};
|
|
|
|
zshCompletion = fetchurl {
|
|
url = "https://raw.githubusercontent.com/scalacenter/bloop/v${version}/etc/zsh/_bloop";
|
|
sha256 = "1id6f1fgy2rk0q5aad6ffivhbxa94fallzsc04l9n0y1s2xdhqpm";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/zsh/site-functions
|
|
|
|
cp ${client} $out/bin/blp-client
|
|
cp ${zshCompletion} $out/share/zsh/site-functions/_bloop
|
|
chmod +x $out/bin/blp-client
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/blp-server \
|
|
--prefix PATH : ${lib.makeBinPath [ jdk ]} \
|
|
--add-flags "-cp $CLASSPATH bloop.Server"
|
|
makeWrapper $out/bin/blp-client $out/bin/bloop \
|
|
--prefix PATH : ${lib.makeBinPath [ python ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://scalacenter.github.io/bloop/;
|
|
license = licenses.asl20;
|
|
description = "Bloop is a Scala build server and command-line tool to make the compile and test developer workflows fast and productive in a build-tool-agnostic way.";
|
|
maintainers = with maintainers; [ tomahna ];
|
|
};
|
|
}
|