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

44 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, jdk, jre, coursier, makeWrapper }:
2018-10-24 18:00:00 +01:00
let
baseName = "scalafix";
version = "0.9.0";
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
buildCommand = ''
export COURSIER_CACHE=$(pwd)
${coursier}/bin/cs fetch ch.epfl.scala:scalafix-cli_2.12.7:${version} > deps
2018-10-24 18:00:00 +01:00
mkdir -p $out/share/java
cp $(< deps) $out/share/java/
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
outputHash = "19j260prx7k010nxyvc1m9jj1ncxr73m2cym7if39360v5dc05c0";
};
in
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = baseName;
inherit version;
2018-10-24 18:00:00 +01:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jdk deps ];
2018-10-24 18:00:00 +01:00
dontUnpack = true;
2018-10-24 18:00:00 +01:00
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/${baseName} \
--add-flags "-cp $CLASSPATH scalafix.cli.Cli"
'';
installCheckPhase = ''
2018-10-24 18:00:00 +01:00
$out/bin/${baseName} --version | grep -q "${version}"
'';
meta = with lib; {
2018-10-24 18:00:00 +01:00
description = "Refactoring and linting tool for Scala";
homepage = "https://scalacenter.github.io/scalafix/";
2018-10-24 18:00:00 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.tomahna ];
};
}