File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
outputs = { self , nixpkgs , flake-utils , ... } :
14
14
let
15
+ # Setting SBT_OPTS because of this bug: https://github.com/sbt/sbt-site/issues/169
16
+ sbt-overlay = self : super : {
17
+ sbt = super . sbt . overrideAttrs (
18
+ old : {
19
+ nativeBuildInputs = old . nativeBuildInputs or [ ] ++ [ super . makeWrapper ] ;
20
+ postInstall = ''
21
+ wrapProgram $out/bin/sbt --suffix SBT_OPTS : '--add-opens java.base/java.lang=ALL-UNNAMED'
22
+ '' ;
23
+ }
24
+ ) ;
25
+ } ;
26
+
15
27
forSystem = system :
16
28
let
17
- pkgs = nixpkgs . legacyPackages . ${ system } ;
29
+ pkgs = import nixpkgs {
30
+ inherit system ;
31
+ overlays = [ sbt-overlay ] ;
32
+ } ;
18
33
jdk = pkgs . jdk17_headless ;
19
34
in
20
35
{
27
42
pkgs . sbt
28
43
] ;
29
44
30
- # Setting SBT_OPTS because of this bug: https://github.com/sbt/sbt-site/issues/169
31
45
shellHook = ''
32
46
JAVA_HOME="${ jdk } "
33
- SBT_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED"
34
47
'' ;
35
48
} ;
36
49
} ;
You can’t perform that action at this time.
0 commit comments