lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

anki-bin: 2.1.51 -> 2.1.52

authored by

Shaun Smiley and committed by
GitHub
1cf8b6d6 36fb9668

+5 -5
+5 -5
pkgs/games/anki/bin.nix
··· 3 3 let 4 4 pname = "anki-bin"; 5 5 # Update hashes for both Linux and Darwin! 6 - version = "2.1.51"; 6 + version = "2.1.52"; 7 7 8 8 sources = { 9 9 linux = fetchurl { 10 10 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-linux-qt6.tar.zst"; 11 - sha256 = "sha256-ZKVc+TvkNu5mGgibhRIuoLuIfvyoVDy+c4h+Apz9P+0="; 11 + sha256 = "sha256-+eRflNMxutoSY9yQfnhIjfLg9b9CNv+7UuYyg4jgfK4="; 12 12 }; 13 13 14 14 # For some reason anki distributes completely separate dmg-files for the aarch64 version and the x86_64 version 15 15 darwin-x86_64 = fetchurl { 16 16 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-intel-qt6.dmg"; 17 - sha256 = "sha256-wZMJEbcpezVAuBSKlwNTHlqjp0FfmyDB7XD6BBuJhyA="; 17 + sha256 = "sha256-keQxaf0KOQjCb22dQD/1VytW2fk35OPUJyJ42kaoAr8="; 18 18 }; 19 19 darwin-aarch64 = fetchurl { 20 20 url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 - sha256 = "sha256-6RDTYKoisX5DJ9VPWrP9VH9DCABabb9MB3nG4S8jtR0="; 21 + sha256 = "sha256-mYPSOjXh18nWpZjXLAjEodoxopr6rxadESMAf/t9SlI="; 22 22 }; 23 23 }; 24 24 ··· 44 44 45 45 meta = with lib; { 46 46 inherit (anki.meta) license homepage description longDescription; 47 - platforms = [ "x86_64-linux" "x86_64-darwin" ]; 47 + platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; 48 48 maintainers = with maintainers; [ atemu ]; 49 49 }; 50 50