diff options
| author | annalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com> | 2023-11-28 09:28:52 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-28 22:09:06 +0000 |
| commit | 159aa18167b8a55a5ba2b1fa98268eea341c731a (patch) | |
| tree | 13ec7ddd5b5bdd89a037cf6e132c45a4f9ba98c9 | |
| parent | Merge pull request #270653 from NixOS/backport-270597-to-release-23.11 (diff) | |
| download | nixpkgs-origin/backport-270594-to-release-23.11.tar.gz | |
kotlin-native: update darwin hashes; fix buildorigin/backport-270594-to-release-23.11
last version update https://github.com/NixOS/nixpkgs/pull/264833
only updated the linux x64 hash and neglected the 2 macos ones.
this updates the other two hashes using the published sha256 digests
https://github.com/JetBrains/kotlin/releases/tag/v1.9.20
and converts them to an sri.
testing: build passed on x64 darwin
(cherry picked from commit eb198e32f042ad37c7204e745d93c18cfbc5b032)
| -rw-r--r-- | pkgs/development/compilers/kotlin/native.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/kotlin/native.nix b/pkgs/development/compilers/kotlin/native.nix index b50f6287c971..16599c9b96c8 100644 --- a/pkgs/development/compilers/kotlin/native.nix +++ b/pkgs/development/compilers/kotlin/native.nix @@ -20,8 +20,8 @@ stdenv.mkDerivation rec { "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-native-${arch}-${version}.tar.gz"; getHash = arch: { - "macos-aarch64" = "1pn371hy6hkyji4vkfiw3zw30wy0yyfhkxnkkyr8m0609945mkyj"; - "macos-x86_64" = "13c28czvja93zaff0kzqf8crzh998l90gznq0cl6k2j3c0jhyrgm"; + "macos-aarch64" = "sha256-Yw6IO8pj0C9XHfzVshcovkoFBUXJ3KixhGoybBRFL2U="; + "macos-x86_64" = "sha256-mnDi8dMCDzGsdPdD1dw4YMBxAfo5FvwDJVU/ew70z9U="; "linux-x86_64" = "sha256-faMuBYUG5qj0N4vg5EcfWIC3UjXiPhFJuikzXVgNsjw="; }.${arch}; in |
