summary refs log tree commit diff
path: root/nixos/release-small.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/release-small.nix')
-rw-r--r--nixos/release-small.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/release-small.nix b/nixos/release-small.nix
index 11155c85369..8e53064f99d 100644
--- a/nixos/release-small.nix
+++ b/nixos/release-small.nix
@@ -87,7 +87,10 @@ in rec {
     };
     constituents =
       let all = x: map (system: x.${system}) supportedSystems; in
-      [ nixpkgs.tarball ] ++ lib.collect lib.isDerivation nixos;
+      [ nixpkgs.tarball
+        (all nixpkgs.jdk)
+      ]
+      ++ lib.collect lib.isDerivation nixos;
   });
 
 }