rm custom anki-bin
This commit is contained in:
parent
533cb7bbbb
commit
7b9a097d6f
3 changed files with 1 additions and 135 deletions
|
@ -116,6 +116,7 @@
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
python312Packages.python-lsp-server
|
python312Packages.python-lsp-server
|
||||||
gopls
|
gopls
|
||||||
|
anki-bin
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.waybar.enable = true;
|
programs.waybar.enable = true;
|
||||||
|
|
|
@ -1,134 +0,0 @@
|
||||||
{
|
|
||||||
fetchurl,
|
|
||||||
stdenv,
|
|
||||||
lib,
|
|
||||||
buildFHSEnv,
|
|
||||||
appimageTools,
|
|
||||||
writeShellScript,
|
|
||||||
anki,
|
|
||||||
undmg,
|
|
||||||
zstd,
|
|
||||||
cacert,
|
|
||||||
commandLineArgs ? [],
|
|
||||||
}: let
|
|
||||||
pname = "anki-bin";
|
|
||||||
# Update hashes for both Linux and Darwin!
|
|
||||||
version = "24.11";
|
|
||||||
|
|
||||||
sources = {
|
|
||||||
linux = fetchurl {
|
|
||||||
url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-linux-qt6.tar.zst";
|
|
||||||
hash = "sha256-JXn4oxhRODHh6b5hFFj393xMRlaJRVcbMJ5AyXr+jq8=";
|
|
||||||
};
|
|
||||||
|
|
||||||
# For some reason anki distributes completely separate dmg-files for the aarch64 version and the x86_64 version
|
|
||||||
darwin-x86_64 = fetchurl {
|
|
||||||
url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-intel-qt6.dmg";
|
|
||||||
hash = "sha256-UQRdp/GhiRGfsBF+mV6hCKpEQGFv/I9D9KTtc1p776o=";
|
|
||||||
};
|
|
||||||
darwin-aarch64 = fetchurl {
|
|
||||||
url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg";
|
|
||||||
hash = "sha256-zi9yjJirNxFFD7wGa4++J+mDaE5dYZW+X0UUddGkjTU=";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
unpacked = stdenv.mkDerivation {
|
|
||||||
inherit pname version;
|
|
||||||
|
|
||||||
nativeBuildInputs = [zstd];
|
|
||||||
src = sources.linux;
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
xdg-mime () {
|
|
||||||
echo Stubbed!
|
|
||||||
}
|
|
||||||
export -f xdg-mime
|
|
||||||
|
|
||||||
PREFIX=$out bash install.sh
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
inherit
|
|
||||||
(anki.meta)
|
|
||||||
license
|
|
||||||
homepage
|
|
||||||
description
|
|
||||||
mainProgram
|
|
||||||
longDescription
|
|
||||||
;
|
|
||||||
platforms = [
|
|
||||||
"x86_64-linux"
|
|
||||||
"x86_64-darwin"
|
|
||||||
"aarch64-darwin"
|
|
||||||
];
|
|
||||||
maintainers = with maintainers; [mahmoudk1000];
|
|
||||||
};
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
inherit sources;
|
|
||||||
};
|
|
||||||
|
|
||||||
fhsEnvAnki = buildFHSEnv (
|
|
||||||
appimageTools.defaultFhsEnvArgs
|
|
||||||
// {
|
|
||||||
inherit pname version;
|
|
||||||
|
|
||||||
profile = ''
|
|
||||||
# anki vendors QT and mixing QT versions usually causes crashes
|
|
||||||
unset QT_PLUGIN_PATH
|
|
||||||
# anki uses the system ssl cert, without it plugins do not download/update
|
|
||||||
export SSL_CERT_FILE="${cacert}/etc/ssl/certs/ca-bundle.crt"
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Dependencies of anki
|
|
||||||
targetPkgs = pkgs: (with pkgs; [
|
|
||||||
xorg.libxkbfile
|
|
||||||
xcb-util-cursor-HEAD
|
|
||||||
krb5
|
|
||||||
zstd
|
|
||||||
]);
|
|
||||||
|
|
||||||
runScript = writeShellScript "anki-wrapper.sh" ''
|
|
||||||
exec ${unpacked}/bin/anki ${lib.strings.escapeShellArgs commandLineArgs} "$@"
|
|
||||||
'';
|
|
||||||
|
|
||||||
extraInstallCommands = ''
|
|
||||||
ln -s ${pname} $out/bin/anki
|
|
||||||
|
|
||||||
mkdir -p $out/share
|
|
||||||
cp -R ${unpacked}/share/applications \
|
|
||||||
${unpacked}/share/man \
|
|
||||||
${unpacked}/share/pixmaps \
|
|
||||||
$out/share/
|
|
||||||
'';
|
|
||||||
|
|
||||||
inherit meta passthru;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
in
|
|
||||||
if stdenv.hostPlatform.isLinux
|
|
||||||
then fhsEnvAnki
|
|
||||||
else
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
inherit pname version passthru;
|
|
||||||
|
|
||||||
src =
|
|
||||||
if stdenv.hostPlatform.isAarch64
|
|
||||||
then sources.darwin-aarch64
|
|
||||||
else sources.darwin-x86_64;
|
|
||||||
|
|
||||||
nativeBuildInputs = [undmg];
|
|
||||||
sourceRoot = ".";
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/Applications/
|
|
||||||
cp -a Anki.app $out/Applications/
|
|
||||||
'';
|
|
||||||
|
|
||||||
inherit meta;
|
|
||||||
}
|
|
|
@ -1,3 +1,2 @@
|
||||||
pkgs: {
|
pkgs: {
|
||||||
anki-bin = pkgs.callPackage ./anki-bin.nix {};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue