summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-02-07 16:35:28 +0000
committerAlyssa Ross <hi@alyssa.is>2023-02-07 16:35:28 +0000
commitc5365dce85d3e8eb30b2713c67d52f74df332809 (patch)
tree026763356ae1860a840b5366b6f948b7685d81cc
parent2c3e53a6cdcc92f0a2f9913c3363a1a42b871e41 (diff)
downloadnixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.tar
nixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.tar.gz
nixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.tar.bz2
nixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.tar.lz
nixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.tar.xz
nixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.tar.zst
nixpkgs-c5365dce85d3e8eb30b2713c67d52f74df332809.zip
eclipses.eclipse-sdk: fix hash for x86_64-linux
When aarch64 support was added, the x86_64 appears to have been
accidentally replaced with the one for eclipse-platform.

Fixes: 2c3e53a6cdc ("eclipses.*: Enable on aarch64-linux")
-rw-r--r--pkgs/applications/editors/eclipse/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index a57a3901f63..a0b0fa56de1 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -103,7 +103,7 @@ in rec {
       fetchurl {
         url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops${platform_major}/R-${platform_major}.${platform_minor}-${timestamp}/eclipse-SDK-${platform_major}.${platform_minor}-linux-gtk-${arch}.tar.gz";
         hash = {
-          x86_64 = "sha512-hmdWGteMDt4HhYq+k9twuftalpTzHtGnVVLphZcpJcw+6vJfersciDMaeLRqbCAeFbzJdgzjYo76bpP6FubySw==";
+          x86_64 = "sha512-yH4/K9sBLCUc2EVYwPL0dLql/S3AfaV6fFh7ewAuIb7yHtcsOWMqy/h1hZUlFFg2ykfwDWDDHEK7qfTI0hM7BQ==";
           aarch64 = "sha512-UYp8t7r2RrN3rKN180cWpJyhyO5LVXL8LrTRKJzttUgB7kM1nroTEI3DesBu+Hw4Ynl7eLiBK397rqcpOAfxJw==";
         }.${arch};
       };