1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/build-managers/sbt/default.nix

33 lines
797 B
Nix
Raw Normal View History

2017-11-26 22:21:06 +00:00
{ stdenv, fetchurl, jre }:
stdenv.mkDerivation rec {
pname = "sbt";
2019-10-15 10:20:26 +01:00
version = "1.3.3";
src = fetchurl {
2017-07-28 16:27:35 +01:00
urls = [
2019-09-25 20:08:50 +01:00
"https://piccolo.link/sbt-${version}.tgz"
2017-08-11 15:22:20 +01:00
"https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz"
2017-07-28 16:27:35 +01:00
];
2019-10-15 10:20:26 +01:00
sha256 = "0v27i8pd9ss53ipi1cs40426mnyppdjgcdjk8nn05bi6rm7a4r7y";
};
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; {
2018-06-27 21:12:57 +01:00
homepage = https://www.scala-sbt.org/;
2016-07-21 11:29:14 +01:00
license = licenses.bsd3;
description = "A build tool for Scala, Java and more";
maintainers = with maintainers; [ nequissimus ];
2016-07-21 11:29:14 +01:00
platforms = platforms.unix;
};
}