python312Packages.stable-baselines3: 2.4.0 -> 2.4.1-unstable-2025-01-07 (#373253)
[NixPkgs.git] / doc / languages-frameworks / java.section.md
blob5208a6388a3275ddff25027773b11ae4c44fed6f
1 # Java {#sec-language-java}
3 Ant-based Java packages are typically built from source as follows:
5 ```nix
6 stdenv.mkDerivation {
7   pname = "...";
8   version = "...";
10   src = fetchurl { /* ... */ };
12   nativeBuildInputs = [
13     ant
14     jdk
15     stripJavaArchivesHook # removes timestamp metadata from jar files
16   ];
18   buildPhase = ''
19     runHook preBuild
20     ant # build the project using ant
21     runHook postBuild
22   '';
24   installPhase = ''
25     runHook preInstall
27     # copy generated jar file(s) to an appropriate location in $out
28     install -Dm644 build/foo.jar $out/share/java/foo.jar
30     runHook postInstall
31   '';
33 ```
35 Note that `jdk` is an alias for the OpenJDK (self-built where available,
36 or pre-built via Zulu).
38 Also note that not using `stripJavaArchivesHook` will likely cause the
39 generated `.jar` files to be non-deterministic, which is not optimal.
40 Using it, however, does not always guarantee reproducibility.
42 JAR files that are intended to be used by other packages should be
43 installed in `$out/share/java`. JDKs have a stdenv setup hook that add
44 any JARs in the `share/java` directories of the build inputs to the
45 `CLASSPATH` environment variable. For instance, if the package `libfoo`
46 installs a JAR named `foo.jar` in its `share/java` directory, and
47 another package declares the attribute
49 ```nix
51   buildInputs = [ libfoo ];
52   nativeBuildInputs = [ jdk ];
54 ```
56 then `CLASSPATH` will be set to
57 `/nix/store/...-libfoo/share/java/foo.jar`.
59 Private JARs should be installed in a location like
60 `$out/share/package-name`.
62 If your Java package provides a program, you need to generate a wrapper
63 script to run it using a JRE. You can use `makeWrapper` for this:
65 ```nix
67   nativeBuildInputs = [ makeWrapper ];
69   installPhase = ''
70     mkdir -p $out/bin
71     makeWrapper ${jre}/bin/java $out/bin/foo \
72       --add-flags "-cp $out/share/java/foo.jar org.foo.Main"
73   '';
75 ```
77 Since the introduction of the Java Platform Module System in Java 9,
78 Java distributions typically no longer ship with a general-purpose JRE:
79 instead, they allow generating a JRE with only the modules required for
80 your application(s). Because we can't predict what modules will be
81 needed on a general-purpose system, the default jre package is the full
82 JDK. When building a minimal system/image, you can override the
83 `modules` parameter on `jre_minimal` to build a JRE with only the
84 modules relevant for you:
86 ```nix
87 let
88   my_jre = pkgs.jre_minimal.override {
89     modules = [
90       # The modules used by 'something' and 'other' combined:
91       "java.base"
92       "java.logging"
93     ];
94   };
95   something = (pkgs.something.override { jre = my_jre; });
96   other = (pkgs.other.override { jre = my_jre; });
98   <...>
99 ```
101 You can also specify what JDK your JRE should be based on, for example
102 selecting a 'headless' build to avoid including a link to GTK+:
104 ```nix
106   my_jre = pkgs.jre_minimal.override {
107     jdk = jdk11_headless;
108   };
112 Note all JDKs passthru `home`, so if your application requires
113 environment variables like `JAVA_HOME` being set, that can be done in a
114 generic fashion with the `--set` argument of `makeWrapper`:
116 ```bash
117 --set JAVA_HOME ${jdk.home}
120 It is possible to use a different Java compiler than `javac` from the
121 OpenJDK. For instance, to use the GNU Java Compiler:
123 ```nix
125   nativeBuildInputs = [ gcj ant ];
129 Here, Ant will automatically use `gij` (the GNU Java Runtime) instead of
130 the OpenJRE.