2021-10-19 17:03:00 +00:00
|
|
|
{ lib, callPackage, Foundation }:
|
2021-08-04 01:15:06 +00:00
|
|
|
|
|
|
|
let
|
2021-10-19 17:03:00 +00:00
|
|
|
mkGraal = opts: callPackage (import ./mkGraal.nix opts) {
|
2021-08-04 01:15:06 +00:00
|
|
|
inherit Foundation;
|
|
|
|
};
|
2022-03-28 06:06:08 +00:00
|
|
|
|
|
|
|
commonProducts = [
|
|
|
|
"graalvm-ce"
|
|
|
|
"native-image-installable-svm"
|
|
|
|
"ruby-installable-svm"
|
|
|
|
"wasm-installable-svm"
|
|
|
|
];
|
|
|
|
|
2021-10-19 17:03:00 +00:00
|
|
|
in
|
|
|
|
{
|
2021-08-04 01:15:06 +00:00
|
|
|
inherit mkGraal;
|
|
|
|
|
|
|
|
graalvm11-ce = mkGraal rec {
|
2022-03-28 06:06:08 +00:00
|
|
|
config = {
|
|
|
|
x86_64-darwin = {
|
|
|
|
arch = "darwin-amd64";
|
|
|
|
products = commonProducts ++ [ "python-installable-svm" ];
|
|
|
|
};
|
|
|
|
x86_64-linux = {
|
|
|
|
arch = "linux-amd64";
|
|
|
|
products = commonProducts ++ [ "python-installable-svm" ];
|
|
|
|
};
|
|
|
|
aarch64-linux = {
|
|
|
|
arch = "linux-aarch64";
|
|
|
|
products = commonProducts;
|
|
|
|
};
|
|
|
|
};
|
2022-01-26 23:04:20 +00:00
|
|
|
version = "22.0.0.2";
|
2021-08-04 01:15:06 +00:00
|
|
|
javaVersion = "11";
|
2022-03-28 06:06:08 +00:00
|
|
|
platforms = builtins.attrNames config;
|
2021-08-04 01:15:06 +00:00
|
|
|
};
|
2021-10-19 17:03:00 +00:00
|
|
|
|
2021-10-20 15:25:18 +00:00
|
|
|
# TODO: fix aarch64-linux, failing during Native Image compilation
|
|
|
|
# "Caused by: java.io.IOException: Cannot run program
|
|
|
|
# "/nix/store/1q1mif7h3lgxdaxg6j39hli5azikrfla-gcc-wrapper-9.3.0/bin/gcc" (in
|
|
|
|
# directory"/tmp/SVM-4194439592488143713"): error=0, Failed to exec spawn
|
|
|
|
# helper: pid: 19865, exit value: 1"
|
|
|
|
graalvm17-ce = mkGraal rec {
|
2022-03-28 06:06:08 +00:00
|
|
|
config = {
|
|
|
|
x86_64-darwin = {
|
|
|
|
arch = "darwin-amd64";
|
|
|
|
products = commonProducts ++ [ "python-installable-svm" ];
|
|
|
|
};
|
|
|
|
x86_64-linux = {
|
|
|
|
arch = "linux-amd64";
|
|
|
|
products = commonProducts ++ [ "python-installable-svm" ];
|
|
|
|
};
|
|
|
|
};
|
2022-01-26 23:04:20 +00:00
|
|
|
version = "22.0.0.2";
|
2021-10-20 15:25:18 +00:00
|
|
|
javaVersion = "17";
|
2022-03-28 06:06:08 +00:00
|
|
|
platforms = builtins.attrNames config;
|
2021-10-20 15:25:18 +00:00
|
|
|
};
|
2021-08-04 01:15:06 +00:00
|
|
|
}
|