about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-03-20 12:36:46 +0100
committerGitHub <noreply@github.com>2024-03-20 12:36:46 +0100
commitc4f1f457e3e2adab53f6039763a78acfebd7907b (patch)
tree0289260ab4509730291d9dbf51e424ca5b5e4c1d /pkgs/applications
parentd61044bd31920d4020677f0bcc71c15fcf82a582 (diff)
parentdf4ffc959dda485ed0f81d2fdd1c8525f6034b19 (diff)
downloadnixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.tar
nixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.tar.gz
nixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.tar.bz2
nixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.tar.lz
nixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.tar.xz
nixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.tar.zst
nixlib-c4f1f457e3e2adab53f6039763a78acfebd7907b.zip
Merge pull request #295600 from daniel-fahey/protonmail-bridge-gui
protonmail-bridge-gui: init at 3.9.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/protonmail-bridge/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/networking/protonmail-bridge/default.nix b/pkgs/applications/networking/protonmail-bridge/default.nix
index 1414543d4cc4..add40cac8f18 100644
--- a/pkgs/applications/networking/protonmail-bridge/default.nix
+++ b/pkgs/applications/networking/protonmail-bridge/default.nix
@@ -37,17 +37,14 @@ buildGoModule rec {
 
   postInstall = ''
     mv $out/bin/Desktop-Bridge $out/bin/protonmail-bridge # The cli is named like that in other distro packages
-    install -Dm444 dist/proton-bridge.desktop -t $out/share/applications
-    install -Dm444 dist/bridge.svg $out/share/icons/hicolor/scalable/apps/protonmail-bridge.svg
   '';
 
-  meta = with lib; {
-    homepage = "https://github.com/ProtonMail/proton-bridge";
+  meta = {
     changelog = "https://github.com/ProtonMail/proton-bridge/blob/${src.rev}/Changelog.md";
-    downloadPage = "https://github.com/ProtonMail/proton-bridge/releases";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ mrfreezeex ];
     description = "Use your ProtonMail account with your local e-mail client";
+    downloadPage = "https://github.com/ProtonMail/proton-bridge/releases";
+    homepage = "https://github.com/ProtonMail/proton-bridge";
+    license = lib.licenses.gpl3Plus;
     longDescription = ''
       An application that runs on your computer in the background and seamlessly encrypts
       and decrypts your mail as it enters and leaves your computer.
@@ -55,5 +52,6 @@ buildGoModule rec {
       To work, use secret-service freedesktop.org API (e.g. Gnome keyring) or pass.
     '';
     mainProgram = "protonmail-bridge";
+    maintainers = with lib.maintainers; [ mrfreezeex daniel-fahey ];
   };
 }