nixpkgs-suyu/pkgs/applications/misc/todoist-electron/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.5 KiB
Nix
Raw Normal View History

2022-01-24 16:34:20 +01:00
{ lib, stdenv, fetchurl, appimageTools, makeWrapper, electron_15, libsecret }:
2020-02-04 01:08:59 +01:00
stdenv.mkDerivation rec {
pname = "todoist-electron";
2022-01-24 16:34:20 +01:00
version = "1.0.3";
2020-02-04 01:08:59 +01:00
src = fetchurl {
url = "https://electron-dl.todoist.com/linux/Todoist-${version}.AppImage";
2022-01-24 16:34:20 +01:00
sha256 = "sha256-bHX/RWDfe+ht66U7xg4HBZxeWlNBu4gYlIVd+9OuMNU=";
2020-02-04 01:08:59 +01:00
};
appimageContents = appimageTools.extractType2 {
name = "${pname}-${version}";
inherit src;
2020-02-04 01:08:59 +01:00
};
dontUnpack = true;
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
2020-02-04 01:08:59 +01:00
mkdir -p $out/bin $out/share/${pname} $out/share/applications $out/share/icons/hicolor/512x512
2020-02-04 01:08:59 +01:00
cp -a ${appimageContents}/{locales,resources} $out/share/${pname}
cp -a ${appimageContents}/todoist.desktop $out/share/applications/${pname}.desktop
2021-08-26 19:41:29 +02:00
cp -a ${appimageContents}/usr/share/icons/hicolor/512x512/apps $out/share/icons/hicolor/512x512
substituteInPlace $out/share/applications/${pname}.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'
runHook postInstall
'';
2020-02-04 01:08:59 +01:00
postFixup = ''
2022-01-24 16:34:20 +01:00
makeWrapper ${electron_15}/bin/electron $out/bin/${pname} \
--add-flags $out/share/${pname}/resources/app.asar \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc libsecret ]}"
2020-02-04 01:08:59 +01:00
'';
meta = with lib; {
homepage = "https://todoist.com";
description = "The official Todoist electron app";
2020-02-04 01:08:59 +01:00
platforms = [ "x86_64-linux" ];
license = licenses.unfree;
maintainers = with maintainers; [ i077 kylesferrazza ];
2020-02-04 01:08:59 +01:00
};
}