tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
anki-bin: 2.1.64 -> 2.1.65
Mahmoud Ayman
2 years ago
22d66165
e9da2bac
+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 = "2.1.64";
6
6
+
version = "2.1.65";
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-J3bfqqleE5DSfEUnzbWBYdMg653MokW9LYN3rnLd/mU=";
11
11
+
sha256 = "sha256-JBqW/aCMUyR0H52WMYuVkcE3/t/joLxfvFho64IzvDg=";
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-5vve6eiH/OlCqa2HINQfuwmGDpjc1uiiVJSc6iF5rlo=";
17
17
+
sha256 = "sha256-zmCI77yLdoJm/znUgy+xZ8Jd77F3CPlzq3ceBzckA4U=";
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-SJWRAI1Xi92pIcOUaW8c4sLAAJTUWteL4oqXm66OWvs=";
21
21
+
sha256 = "sha256-1owbeL28dnOYD7nR9uZt9EHvFK75GFGRe6S9oV85Eoo=";
22
22
};
23
23
};
24
24