46 lines
1.5 KiB
Nix
46 lines
1.5 KiB
Nix
#
|
|
# Todoist app.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
{ lib, appimageTools, fetchurl, asar }: let
|
|
pname = "todoist-electron";
|
|
version = "9.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://electron-dl.todoist.net/linux/Todoist-linux-${version}-x86_64.AppImage";
|
|
hash = "sha256-tZVn8PLjGz3i3IHvoxr8vgtwCG2wShmXhj9I/+8j/M4=";
|
|
};
|
|
|
|
appimageContents = (appimageTools.extract { inherit pname version src; }).overrideAttrs (oA: {
|
|
buildCommand = ''
|
|
${oA.buildCommand}
|
|
|
|
# Get rid of the autoupdater
|
|
${asar}/bin/asar extract $out/resources/app.asar app
|
|
sed -i 's/async isUpdateAvailable.*/async isUpdateAvailable(updateInfo) { return false;/g' app/node_modules/electron-updater/out/AppUpdater.js
|
|
${asar}/bin/asar pack app $out/resources/app.asar
|
|
'';
|
|
});
|
|
|
|
in appimageTools.wrapAppImage {
|
|
inherit pname version;
|
|
src = appimageContents;
|
|
|
|
extraPkgs = { pkgs, ... }@args: [
|
|
pkgs.hidapi
|
|
] ++ appimageTools.defaultFhsEnvArgs.multiPkgs args;
|
|
|
|
extraInstallCommands = ''
|
|
# Add desktop convencience stuff
|
|
install -Dm444 ${appimageContents}/todoist.desktop -t $out/share/applications
|
|
install -Dm444 ${appimageContents}/todoist.png -t $out/share/pixmaps
|
|
substituteInPlace $out/share/applications/todoist.desktop \
|
|
--replace 'Exec=AppRun' "Exec=$out/bin/${pname} --ozone-platform-hint=auto --"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://todoist.com";
|
|
description = "The official Todoist electron app";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|