mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
37 lines
917 B
Nix
37 lines
917 B
Nix
{ stdenv, fetchurl, unzip, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.7";
|
|
baseName = "scalafmt";
|
|
name = "${baseName}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz";
|
|
sha256 = "1jg2yhnzlyxg735b6qcj3pgnr5q2i361ql27qmxk977al24v5w8i";
|
|
};
|
|
|
|
unpackPhase = "tar xvzf $src";
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
mkdir -p "$out/lib"
|
|
|
|
cp cli/target/scala-2.11/scalafmt.jar "$out/lib/${name}.jar"
|
|
|
|
cat > "$out/bin/${baseName}" << EOF
|
|
#!${stdenv.shell}
|
|
exec ${jre}/bin/java -jar "$out/lib/${name}.jar" "\$@"
|
|
EOF
|
|
|
|
chmod a+x "$out/bin/${baseName}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Opinionated code formatter for Scala";
|
|
homepage = http://scalafmt.org;
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.markus1189 ];
|
|
};
|
|
}
|