nixos-configuration/users/jrpotter/anki/default.nix

135 lines
3.2 KiB
Nix
Raw Normal View History

2024-04-18 14:52:17 +00:00
{ pkgs, ... }:
2024-01-30 09:29:18 +00:00
let
2024-01-30 18:47:36 +00:00
addons = id: "Anki2/addons21/${toString id}";
2024-01-30 21:32:22 +00:00
anki-connect = pkgs.stdenv.mkDerivation {
name = "anki-connect";
2024-01-31 14:40:58 +00:00
2024-01-30 21:32:22 +00:00
src = pkgs.fetchFromGitea {
domain = "git.foosoft.net";
owner = "alex";
repo = "anki-connect";
2024-04-18 14:52:17 +00:00
rev = "4837823bcefe39de7cee03c9dfe576ec01092957";
hash = "sha256-MFi0TMBM7K/TNQMS8ghUhQ31Cpqd5LDQ7pY0me4oevI=";
2024-01-30 21:32:22 +00:00
};
installPhase = ''
mkdir -p $out
cp -r ./plugin/* $out
2024-01-31 14:40:58 +00:00
cat <<EOF > $out/meta.json
{
"name": "AnkiConnect",
"mod": 1705874601,
"min_point_version": 45,
"max_point_version": 45,
"branch_index": 1,
"disabled": false
}
EOF
2024-01-30 21:32:22 +00:00
cat <<EOF > $out/config.json
{
"apiKey": null,
"apiLogPath": null,
"webBindAddress": "127.0.0.1",
"webBindPort": 8765,
"webCorsOrigin": "http://localhost",
"webCorsOriginList": [
"http://localhost",
"app://obsidian.md"
]
}
EOF
'';
2024-01-30 18:47:36 +00:00
};
2024-01-31 14:40:58 +00:00
image-occlusion-enhanced = pkgs.stdenv.mkDerivation {
name = "image-occlusion-enhanced";
src = pkgs.fetchFromGitHub {
owner = "glutanimate";
repo = "image-occlusion-enhanced";
rev = "33711026fbbfd0950fcfaee88ce776ab5e395f9b";
hash = "sha256-aSe9IzezhV3MGW/KGcul+Eesa5oQVwisVse5tjr8RQc=";
};
dontBuild = true;
installPhase = ''
mkdir -p $out
cp -r ./src/image_occlusion_enhanced/* $out
cat <<EOF > $out/meta.json
{
"homepage": "https://github.com/glutanimate/image-occlusion-enhanced",
"name": "Image Occlusion Enhanced",
"max_point_version": 50,
"mod": 1649488507,
"conflicts": ["image_occlusion_enhanced"],
"min_point_version": 50,
"branch_index": 1,
"disabled": false
}
EOF
'';
2024-01-30 09:29:18 +00:00
};
syntax-highlighting-ng = pkgs.stdenv.mkDerivation {
name = "syntax-highlighting-ng";
src = pkgs.fetchgit {
url = "https://github.com/cav71/syntax-highlighting-ng";
rev = "138db00d5372e155ac056a148a5cd05a7455bfe1";
hash = "sha256-2EEiS/wF2YcQf9U7rYxeWmgAluh5iUAE4fpron7JKw4=";
};
installPhase = ''
mkdir -p $out
cp -r ./src/syntax_highlighting_ng/* $out
2024-01-31 14:40:58 +00:00
cat <<EOF > $out/meta.json
{
"mod": 1706379662,
"name": "Syntax Highlighting NG",
"homepage": "https://github.com/cav71/syntax-highlighting-ng",
"conflicts": ["566351439", "syntax_highlighting"],
"min_point_version": 49,
"max_point_version": 231001,
"branch_index": 0,
"disabled": false
}
EOF
2024-01-30 09:29:18 +00:00
cat <<EOF > $out/config.json
{
"hotkey": "Alt+s",
"limitToLangs": [],
"style": "monokai"
}
EOF
'';
};
in
{
2024-01-31 14:30:26 +00:00
# When deleting a plugin also remove the generated folder at
# `$HOME/.local/share/Anki2/addons21`.
2024-01-30 18:47:36 +00:00
xdg.dataFile = {
2024-01-31 14:40:58 +00:00
"${addons 2055492159}" = {
source = anki-connect;
recursive = true;
};
"${addons 1374772155}" = {
source = image-occlusion-enhanced;
recursive = true;
};
"${addons 566351439}" = {
source = syntax-highlighting-ng;
recursive = true;
};
2024-01-30 18:47:36 +00:00
};
2024-01-30 09:29:18 +00:00
2024-01-31 14:13:42 +00:00
home.packages = [
2024-02-02 16:47:19 +00:00
(pkgs.callPackage ./bin.nix {})
2024-01-31 14:13:42 +00:00
];
2024-01-30 09:29:18 +00:00
}