nixpkgs/pkgs/development/tools/build-managers/sbt/default.nix

33 lines
788 B
Nix
Raw Normal View History

{ stdenv, fetchurl, jre }:
stdenv.mkDerivation rec {
name = "sbt-${version}";
2017-07-28 16:27:35 +01:00
version = "0.13.16";
src = fetchurl {
2017-07-28 16:27:35 +01:00
urls = [
"https://dl.bintray.com/sbt/native-packages/sbt/${version}/${name}.tgz"
"https://cocl.us/sbt01316tgz"
];
sha256 = "033nvklclvbirhpsiy28d3ccmbm26zcs9vb7j8jndsc1ln09awi2";
};
2015-09-25 15:54:35 +01:00
patchPhase = ''
echo -java-home ${jre.home} >>conf/sbtopts
'';
installPhase = ''
2015-09-25 15:54:35 +01:00
mkdir -p $out/share/sbt $out/bin
cp -ra . $out/share/sbt
ln -s $out/share/sbt/bin/sbt $out/bin/
'';
2016-07-21 11:29:14 +01:00
meta = with stdenv.lib; {
homepage = http://www.scala-sbt.org/;
2016-07-21 11:29:14 +01:00
license = licenses.bsd3;
description = "A build tool for Scala, Java and more";
2016-07-21 11:29:14 +01:00
maintainers = with maintainers; [ rickynils ];
platforms = platforms.unix;
};
}