Merge pull request #215072 from mahmoudk1000/master

anki-bin: 2.1.56 -> 2.1.57

authored by Nick Cao and committed by GitHub bf68f997 e7434d6a

+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 = "2.1.56"; 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-bois8+W/Jvte0HqC6Vi8WcXzrc8y8fKoW3ttbPb/v14="; 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-xd96wG+dElf6kSJ3jtdwfDhxJIv2r/o/JF2RcIwaZkg="; 18 }; 19 darwin-aarch64 = fetchurl { 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 - sha256 = "sha256-dYYgKEN6ytZ1CIH2+hK7H7xs3ISMbZGDv3w+Ie+ISlw="; 22 }; 23 }; 24
··· 3 let 4 pname = "anki-bin"; 5 # Update hashes for both Linux and Darwin! 6 + version = "2.1.57"; 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-W8EQxvdOQRYHVKoYGu+6LNAHJZGsVQgdvNsRXOBVUKM="; 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-NhCMmXuZj+Il/hhZZhbk7eLsmbfnqYlSRgw33xIbv8M="; 18 }; 19 darwin-aarch64 = fetchurl { 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 + sha256 = "sha256-8gLtFoqJVvh1NfaSpNeH8+YecMln+A7UyqeSXWVEtmo="; 22 }; 23 }; 24