Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
981 B
Nix
36 lines
981 B
Nix
{
|
|
appimageTools,
|
|
lib,
|
|
fetchurl,
|
|
}:
|
|
let
|
|
pname = "everdo";
|
|
version = "1.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://release.everdo.net/${version}/Everdo-${version}.AppImage";
|
|
hash = "sha256-0yxAzM+qmgm4E726QDYS9QwMdp6dUcuvjZzWYEZx7kU=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
install -Dm444 ${appimageContents}/everdo.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/everdo.desktop \
|
|
--replace-fail 'Exec=AppRun --no-sandbox %U' 'Exec=everdo %u'
|
|
cp -r ${appimageContents}/usr/share/icons $out/share
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cross-platform GTD app with focus on privacy";
|
|
homepage = "https://everdo.net/";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.luftmensch-luftmensch ];
|
|
mainProgram = "everdo";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|