Merge pull request #307164 from mahmoudk1000/master

anki-bin: 24.04 -> 24.04.1

authored by Nick Cao and committed by GitHub d8882fc4 7c164806

+4 -4
+4 -4
pkgs/games/anki/bin.nix
··· 3 let 4 pname = "anki-bin"; 5 # Update hashes for both Linux and Darwin! 6 - version = "24.04"; 7 8 sources = { 9 linux = fetchurl { 10 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-linux-qt6.tar.zst"; 11 - sha256 = "sha256-mIQ448ecBDrMo3qspXVOBJM/0LebJ9lA1JIwz70Uqhc="; 12 }; 13 14 # For some reason anki distributes completely separate dmg-files for the aarch64 version and the x86_64 version 15 darwin-x86_64 = fetchurl { 16 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-intel-qt6.dmg"; 17 - sha256 = "sha256-ab8cc+QMt3ZJp1NZmAwz2VNZwWQK0DBPKnz2fGmC7Fs="; 18 }; 19 darwin-aarch64 = fetchurl { 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 - sha256 = "sha256-bRpPVOXpDRq+EXwW1yWiAgzkcdLhLnMrHo/t9Jgzth0="; 22 }; 23 }; 24
··· 3 let 4 pname = "anki-bin"; 5 # Update hashes for both Linux and Darwin! 6 + version = "24.04.1"; 7 8 sources = { 9 linux = fetchurl { 10 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-linux-qt6.tar.zst"; 11 + sha256 = "sha256-elUTr0Lumw5bzWbeU74m8e/AxQPNpKXiIOC0Rcgh3AY="; 12 }; 13 14 # For some reason anki distributes completely separate dmg-files for the aarch64 version and the x86_64 version 15 darwin-x86_64 = fetchurl { 16 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-intel-qt6.dmg"; 17 + sha256 = "sha256-LlHbZ8Yw17Ym11L1lqMibAaV8XWB8oiMFGQxE1PvApI="; 18 }; 19 darwin-aarch64 = fetchurl { 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 + sha256 = "sha256-lMUfIvV4biaOb0ABTZciBP59XY1Ln3tkwphi2oaRu4c="; 22 }; 23 }; 24