summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-04-13 10:06:27 -0700
committerJon <jonringer@users.noreply.github.com>2020-04-13 10:40:27 -0700
commit088afc8375c5e937d8ec3945a075655f4cd45d41 (patch)
tree8280e2aa1b4a5958226e0254cd55b18f0c2658bc /pkgs/applications/graphics
parenta710a997e5c002436fac78b4a9df20eb57941704 (diff)
downloadnixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.tar
nixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.tar.gz
nixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.tar.bz2
nixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.tar.lz
nixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.tar.xz
nixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.tar.zst
nixpkgs-088afc8375c5e937d8ec3945a075655f4cd45d41.zip
kodelife: fix non-x86 hashes
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/kodelife/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/kodelife/default.nix b/pkgs/applications/graphics/kodelife/default.nix
index 6f935e72fb5..1daeccac908 100644
--- a/pkgs/applications/graphics/kodelife/default.nix
+++ b/pkgs/applications/graphics/kodelife/default.nix
@@ -21,9 +21,9 @@ stdenv.mkDerivation rec {
   src = fetchzip {
     url = "https://hexler.net/pub/${pname}/${pname}-${version}-${suffix}.zip";
     sha256 = {
-      aarch64-linux = "1lcpj1mgkvksq1d08ibh59y0dmdh7zm77wi5ziqhg3p5g9nxyasd";
-      armv7l-linux  = "0sljy06302x567jqw5lagbyhpc3j140jk4wccacxjrbb6hcx3l42";
-      x86_64-darwin = "1b058s9kny026q395nj99v8hggxkgv43nnjkmx1a2siajw0db94c";
+      aarch64-linux = "0z2fqlf156348ha3zhv16kvqdx68fbwbzch2gzjm9x1na9n5k1ra";
+      armv7l-linux  = "1ppwgrmgl1j2ws9mhrscvvkamd69a6xw7x35df6d30cyj97r0mzy";
+      x86_64-darwin = "0f8vn6m3xzsiyxm2ka5wkbp63wvzrix6g1xrbpvcm3v2llmychkl";
       x86_64-linux  = "035c1nlw0nim057sz3axpkcgkafqbm6gpr8hwr097vlrqll6w3dv";
     }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
   };