tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
anki-bin: 23.10 -> 23.10.1
Mahmoud Ayman
2 years ago
41589dfb
a660a21f
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
games
anki
bin.nix
+4
-4
pkgs/games/anki/bin.nix
···
3
3
let
4
4
pname = "anki-bin";
5
5
# Update hashes for both Linux and Darwin!
6
6
-
version = "23.10";
6
6
+
version = "23.10.1";
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
11
-
sha256 = "sha256-dfL95UKu6kwD4WHLtXlIdkf5UItEtW2WCAKP7YGlCtc=";
11
11
+
sha256 = "sha256-Kv0SH+bLnBSM/tYHe2kEJc4n7izZTBNWQs2nm/teLEU=";
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
17
-
sha256 = "sha256-Y8BZ7EA6Dn4+5kMCFyuXi17XDLn9YRxqVGautt9WUOo=";
17
17
+
sha256 = "sha256-MSlKsEv4N/H7G1bUOBlPBXerpHIW32P6Va02aRq1+54=";
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
21
-
sha256 = "sha256-IrKWJ16gMCR2MH8dgYUCtMj6mDQP18+HQr17hfekPIs=";
21
21
+
sha256 = "sha256-jEm9WJBXx77KpldzBuxK1Pu6VGiARZPnRmMhEjZdm1I=";
22
22
};
23
23
};
24
24