mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 19:08:30 +00:00
87 lines
2.8 KiB
Nix
87 lines
2.8 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
, coursier
|
|
, autoPatchelfHook
|
|
, lib
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bloop";
|
|
version = "1.4.3";
|
|
|
|
bloop-coursier-channel = fetchurl {
|
|
url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-coursier.json";
|
|
sha256 = "0abl91l2sb08pwr98mw910zibzwk6lss9r62h2s3g7qnnxp3z59r";
|
|
};
|
|
|
|
bloop-bash = fetchurl {
|
|
url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bash-completions";
|
|
sha256 = "1ldxlqv353gvhdn4yq7z506ywvnjv6fjsi8wigwhzg89876pwsys";
|
|
};
|
|
|
|
bloop-fish = fetchurl {
|
|
url = "https://github.com/scalacenter/bloop/releases/download/v${version}/fish-completions";
|
|
sha256 = "1pa8h81l2498q8dbd83fzipr99myjwxpy8xdgzhvqzdmfv6aa4m0";
|
|
};
|
|
|
|
bloop-zsh = fetchurl {
|
|
url = "https://github.com/scalacenter/bloop/releases/download/v${version}/zsh-completions";
|
|
sha256 = "1xzg0qfkjdmzm3mvg82mc4iia8cl7b6vbl8ng4ir2xsz00zjrlsq";
|
|
};
|
|
|
|
bloop-coursier = stdenv.mkDerivation {
|
|
name = "${pname}-coursier-${version}";
|
|
|
|
phases = [ "installPhase" ];
|
|
installPhase = ''
|
|
export COURSIER_CACHE=$(pwd)
|
|
export COURSIER_JVM_CACHE=$(pwd)
|
|
|
|
mkdir channel
|
|
ln -s ${bloop-coursier-channel} channel/bloop.json
|
|
${coursier}/bin/coursier install --install-dir $out --default-channels=false --channel channel --only-prebuilt=true bloop
|
|
|
|
|
|
# Remove binary part of the coursier launcher script to make derivation output hash stable
|
|
sed -i '5,$ d' $out/bloop
|
|
'';
|
|
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "sha256";
|
|
outputHash = "1ncl34f39mvk0zb5jl1l77cwjdg3xfnhjxbzz11pdfqw0d7wqywj";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ] ;
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
buildInputs = [ stdenv.cc.cc.lib zlib ] ;
|
|
|
|
installPhase = ''
|
|
export COURSIER_CACHE=$(pwd)
|
|
export COURSIER_JVM_CACHE=$(pwd)
|
|
|
|
mkdir -p $out/bin
|
|
cp ${bloop-coursier}/bloop $out/bloop
|
|
cp ${bloop-coursier}/.bloop.aux $out/.bloop.aux
|
|
ln -s $out/bloop $out/bin/bloop
|
|
|
|
# patch the bloop launcher so that it works when symlinked
|
|
sed "s|\$(dirname \"\$0\")|$out|" -i $out/bloop
|
|
|
|
#Install completions
|
|
mkdir -p $out/etc/bash_completion.d
|
|
ln -s ${bloop-bash} $out/etc/bash_completion.d/bloop
|
|
mkdir -p $out/share/zsh/site-functions
|
|
ln -s ${bloop-zsh} $out/share/zsh/site-functions/_bloop
|
|
mkdir -p $out/usr/share/fish/vendor_completions.d/
|
|
ln -s ${bloop-fish} $out/usr/share/fish/vendor_completions.d/bloop.fish
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|