nur-packages/pkgs/applications/networking/protonmail-bridge/headless.nix

18 lines
359 B
Nix
Raw Normal View History

{}:
2021-11-11 22:40:25 +11:00
{
pname = "protonmail-bridge-headless";
2021-11-11 22:40:25 +11:00
tags = [ "pmapi_prod" "nogui" ];
2021-11-11 22:40:25 +11:00
# REVIEW: Some issue with IMAP tests that probably fail due to network
# sandboxing.
doCheck = false;
# Fix up name.
postInstall = ''
mv $out/bin/Desktop-Bridge $out/bin/protonmail-bridge
2021-11-11 22:40:25 +11:00
mv $out/bin/Import-Export $out/bin/protonmail-import-export
'';
}