Merge pull request #276671 from mahmoudk1000/master

anki-bin: 23.10.1 -> 23.12

authored by K900 and committed by GitHub 7b4e6186 47ac9564

+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 = "23.10.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-Kv0SH+bLnBSM/tYHe2kEJc4n7izZTBNWQs2nm/teLEU="; 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-MSlKsEv4N/H7G1bUOBlPBXerpHIW32P6Va02aRq1+54="; 18 }; 19 darwin-aarch64 = fetchurl { 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 - sha256 = "sha256-jEm9WJBXx77KpldzBuxK1Pu6VGiARZPnRmMhEjZdm1I="; 22 }; 23 }; 24
··· 3 let 4 pname = "anki-bin"; 5 # Update hashes for both Linux and Darwin! 6 + version = "23.12.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-bFtAUqSoFS8CWESiepWXywndkijATbWp6CJdqlQecuk="; 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-z48REB14p7rb50ty9u/26wx0sY4QZb4pj6wOXsSBCdg="; 18 }; 19 darwin-aarch64 = fetchurl { 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 + sha256 = "sha256-bdaCqSjje86wmVKIFZqzuFaEZ7SWQr7CAS/Hm1CpOMg="; 22 }; 23 }; 24