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

44 lines
1.1 KiB
Nix
Raw Normal View History

2017-12-08 08:31:04 +00:00
{ stdenv, jdk, jre, coursier, makeWrapper }:
2016-05-09 17:41:21 +00:00
2017-12-08 08:31:04 +00:00
let
2016-05-09 17:41:21 +00:00
baseName = "scalafmt";
2018-01-04 12:05:23 +00:00
version = "1.4.0";
2017-12-08 08:31:04 +00:00
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
2017-12-08 08:31:04 +00:00
buildCommand = ''
export COURSIER_CACHE=$(pwd)
${coursier}/bin/coursier fetch com.geirsson:scalafmt-cli_2.12:${version} > deps
2017-12-08 08:31:04 +00:00
mkdir -p $out/share/java
cp $(< deps) $out/share/java/
2017-12-08 08:31:04 +00:00
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
2018-01-04 12:05:23 +00:00
outputHash = "12hsix3b7qnyr9x2v7i6jgqljdqxpfj4bfvhjdl99ijr793g3lnp";
2016-05-09 17:41:21 +00:00
};
2017-12-08 08:31:04 +00:00
in
stdenv.mkDerivation rec {
name = "${baseName}-${version}";
2016-05-09 17:41:21 +00:00
2017-12-08 08:31:04 +00:00
buildInputs = [ jdk makeWrapper deps ];
2016-05-09 17:41:21 +00:00
2017-12-08 08:31:04 +00:00
doCheck = true;
2016-05-09 17:41:21 +00:00
2017-12-08 08:31:04 +00:00
phases = [ "installPhase" "checkPhase" ];
2016-05-09 17:41:21 +00:00
2017-12-08 08:31:04 +00:00
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/${baseName} \
--add-flags "-cp $CLASSPATH org.scalafmt.cli.Cli"
'';
2016-05-09 17:41:21 +00:00
2017-12-08 08:31:04 +00:00
checkPhase = ''
$out/bin/${baseName} --version | grep -q "${version}"
2016-05-09 17:41:21 +00:00
'';
meta = with stdenv.lib; {
description = "Opinionated code formatter for Scala";
homepage = http://scalafmt.org;
license = licenses.asl20;
maintainers = [ maintainers.markus1189 ];
};
}