Skip to content

Commit b55fd6c

Browse files
committed
add sbt-overlay with sbt-site fix
1 parent 2342480 commit b55fd6c

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

flake.nix

+16-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,24 @@
1212

1313
outputs = { self, nixpkgs, flake-utils, ... }:
1414
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+
1527
forSystem = system:
1628
let
17-
pkgs = nixpkgs.legacyPackages.${system};
29+
pkgs = import nixpkgs {
30+
inherit system;
31+
overlays = [ sbt-overlay ];
32+
};
1833
jdk = pkgs.jdk17_headless;
1934
in
2035
{
@@ -27,10 +42,8 @@
2742
pkgs.sbt
2843
];
2944

30-
# Setting SBT_OPTS because of this bug: https://github.com/sbt/sbt-site/issues/169
3145
shellHook = ''
3246
JAVA_HOME="${jdk}"
33-
SBT_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED"
3447
'';
3548
};
3649
};

0 commit comments

Comments
 (0)