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

48 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, jdk, jre, coursier, makeWrapper }:
2016-05-09 18:41:21 +01:00
2017-12-08 08:31:04 +00:00
let
2016-05-09 18:41:21 +01:00
baseName = "scalafmt";
2021-08-19 14:09:11 +01:00
version = "3.0.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)
2021-08-19 14:09:11 +01:00
${coursier}/bin/coursier fetch org.scalameta:scalafmt-cli_2.13:${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";
2021-08-19 14:09:11 +01:00
outputHash = "fZVOyxswtDtCDDGmGzKbRnM5MVncKaicRKyEdPiXOr8=";
2016-05-09 18:41:21 +01:00
};
2017-12-08 08:31:04 +00:00
in
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = baseName;
inherit version;
2016-05-09 18:41:21 +01:00
2019-05-08 17:13:15 +01:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jdk deps ];
2016-05-09 18:41:21 +01:00
dontUnpack = true;
2016-05-09 18:41:21 +01:00
2017-12-08 08:31:04 +00:00
installPhase = ''
runHook preInstall
2017-12-08 08:31:04 +00:00
makeWrapper ${jre}/bin/java $out/bin/${baseName} \
--add-flags "-cp $CLASSPATH org.scalafmt.cli.Cli"
runHook postInstall
2017-12-08 08:31:04 +00:00
'';
2016-05-09 18:41:21 +01:00
installCheckPhase = ''
2017-12-08 08:31:04 +00:00
$out/bin/${baseName} --version | grep -q "${version}"
2016-05-09 18:41:21 +01:00
'';
meta = with lib; {
2016-05-09 18:41:21 +01:00
description = "Opinionated code formatter for Scala";
homepage = "http://scalameta.org/scalafmt";
2016-05-09 18:41:21 +01:00
license = licenses.asl20;
maintainers = [ maintainers.markus1189 ];
};
}