-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
graalvm-oracle: init at 21 #259639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
graalvm-oracle: init at 21 #259639
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { lib | ||
| , stdenv | ||
| , callPackage | ||
| , fetchurl | ||
| }: | ||
|
|
||
| { | ||
|
|
||
| buildGraalvm = callPackage ./buildGraalvm.nix; | ||
|
|
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { lib | ||
| , stdenv | ||
| , fetchurl | ||
| , graalvmPackages | ||
| , useMusl ? false | ||
| }: | ||
|
|
||
| graalvmPackages.buildGraalvm { | ||
| inherit useMusl; | ||
| src = fetchurl (import ./hashes.nix).hashes.${stdenv.system}; | ||
| version = (import ./hashes.nix).version; | ||
| meta.platforms = builtins.attrNames (import ./hashes.nix).hashes; | ||
thiagokokada marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| meta.license = lib.licenses.unfree; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "version" = "21"; | ||
| "hashes" = { | ||
| "aarch64-linux" = { | ||
| sha256 = "eb1eaf9d1e1e01263b0acd552552686084903ae11a9a7698a144ef8c3ee02dec"; | ||
| url = "https://download.oracle.com/graalvm/21/archive/graalvm-jdk-21_linux-aarch64_bin.tar.gz"; | ||
| }; | ||
| "x86_64-linux" = { | ||
| sha256 = "be1ab3c9b08b5747b7cd577c991d25b52157cff1c8c5f290f8556c593b57a6f4"; | ||
| url = "https://download.oracle.com/graalvm/21/archive/graalvm-jdk-21_linux-x64_bin.tar.gz"; | ||
| }; | ||
| "x86_64-darwin" = { | ||
| sha256 = "0744ab104998f8f45d9ae582134963f5d273286dff9aff586aed24f5f8434660"; | ||
| url = "https://download.oracle.com/graalvm/21/archive/graalvm-jdk-21_macos-x64_bin.tar.gz"; | ||
| }; | ||
| "aarch64-darwin" = { | ||
| sha256 = "c2ca434adef1e497c8a4d942ae1dbf6bbd1c8174a6fcdafc65cde0e853285300"; | ||
| url = "https://download.oracle.com/graalvm/21/archive/graalvm-jdk-21_macos-aarch64_bin.tar.gz"; | ||
| }; | ||
| }; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16481,9 +16481,12 @@ with pkgs; | |
| openjdk = jdk; | ||
| openjdk_headless = jdk_headless; | ||
|
|
||
| graalvmPackages = | ||
| recurseIntoAttrs (callPackage ../development/compilers/graalvm { }); | ||
| graalvmCEPackages = | ||
| recurseIntoAttrs (callPackage ../development/compilers/graalvm/community-edition { }); | ||
| graalvm-ce = graalvmCEPackages.graalvm-ce; | ||
|
Comment on lines
+16484
to
16488
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we are going to create this Please move all packages to be under the
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought that the others may not make sense for now as they are not available for oracle?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Since we are going to introduce |
||
| graalvm-oracle = callPackage ../development/compilers/graalvm/oracle { }; | ||
| buildGraalvmNativeImage = (callPackage ../build-support/build-graalvm-native-image { | ||
| graalvmDrv = graalvm-ce; | ||
| }).override; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.