Skip to content

Commit 3c93a19

Browse files
committedNov 26, 2017
sbt: 1.0.3 -> 1.0.4
(cherry picked from commit 3cb310a)
1 parent eb08538 commit 3c93a19

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
1-
{ stdenv, fetchurl, jre, bc }:
1+
{ stdenv, fetchurl, jre }:
22

33
stdenv.mkDerivation rec {
44
name = "sbt-${version}";
5-
version = "1.0.3";
5+
version = "1.0.4";
66

77
src = fetchurl {
88
urls = [
99
"https://dl.bintray.com/sbt/native-packages/sbt/${version}/${name}.tgz"
1010
"https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz"
1111
"https://cocl.us/sbt-${version}.tgz"
1212
];
13-
sha256 = "041cv25gxqsi3rlglw5d8aqgdzb6y5ak3f52dwqvzrrj854vyx13";
13+
sha256 = "0gz2akifi842y8av2hh7w2z6fd6z400nvk8ip87rkyhx3gw7cdw1";
1414
};
1515

1616
patchPhase = ''
1717
echo -java-home ${jre.home} >>conf/sbtopts
18-
19-
substituteInPlace bin/sbt-launch-lib.bash \
20-
--replace "| bc)" "| ${bc}/bin/bc)"
2118
'';
2219

2320
installPhase = ''
@@ -30,7 +27,7 @@ stdenv.mkDerivation rec {
3027
homepage = http://www.scala-sbt.org/;
3128
license = licenses.bsd3;
3229
description = "A build tool for Scala, Java and more";
33-
maintainers = with maintainers; [ rickynils ];
30+
maintainers = with maintainers; [ nequissimus rickynils ];
3431
platforms = platforms.unix;
3532
};
3633
}

0 commit comments

Comments
 (0)
Please sign in to comment.