File tree 1 file changed +4
-7
lines changed
pkgs/development/tools/build-managers/sbt
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
- { stdenv , fetchurl , jre , bc } :
1
+ { stdenv , fetchurl , jre } :
2
2
3
3
stdenv . mkDerivation rec {
4
4
name = "sbt-${ version } " ;
5
- version = "1.0.3 " ;
5
+ version = "1.0.4 " ;
6
6
7
7
src = fetchurl {
8
8
urls = [
9
9
"https://dl.bintray.com/sbt/native-packages/sbt/${ version } /${ name } .tgz"
10
10
"https://github.com/sbt/sbt/releases/download/v${ version } /sbt-${ version } .tgz"
11
11
"https://cocl.us/sbt-${ version } .tgz"
12
12
] ;
13
- sha256 = "041cv25gxqsi3rlglw5d8aqgdzb6y5ak3f52dwqvzrrj854vyx13 " ;
13
+ sha256 = "0gz2akifi842y8av2hh7w2z6fd6z400nvk8ip87rkyhx3gw7cdw1 " ;
14
14
} ;
15
15
16
16
patchPhase = ''
17
17
echo -java-home ${ jre . home } >>conf/sbtopts
18
-
19
- substituteInPlace bin/sbt-launch-lib.bash \
20
- --replace "| bc)" "| ${ bc } /bin/bc)"
21
18
'' ;
22
19
23
20
installPhase = ''
@@ -30,7 +27,7 @@ stdenv.mkDerivation rec {
30
27
homepage = http://www.scala-sbt.org/ ;
31
28
license = licenses . bsd3 ;
32
29
description = "A build tool for Scala, Java and more" ;
33
- maintainers = with maintainers ; [ rickynils ] ;
30
+ maintainers = with maintainers ; [ nequissimus rickynils ] ;
34
31
platforms = platforms . unix ;
35
32
} ;
36
33
}
You can’t perform that action at this time.
0 commit comments