about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/bisq-desktop/default.nix
diff options
context:
space:
mode:
authorEmmanuel Rosa <emmanuelrosa@protonmail.com>2021-07-17 11:15:46 +0700
committerEmmanuel Rosa <emmanuelrosa@protonmail.com>2021-08-11 02:20:30 +0700
commit6cb0749fb13c9e9e45a5dfeb8a02d4073cecc1e5 (patch)
tree69416602166ac885e34c6488bfaf7ebd6ad88b37 /pkgs/applications/blockchains/bisq-desktop/default.nix
parent2582176554c6e483f1dc777542684acd7244c4a0 (diff)
bisq-desktop: *.desktop file improvements
This commit includes two changes to the *.desktop file:

 1. Adds the Bisq version number.
 2. Fixes the categories.

 Sometimes the Bisq network raises the minimum required Bisq version. Adding the version number so that it's displayed in the desktop environment's menu makes it easy for users to confirm whether they have the necessary version.

 Originally, there were two main categories assigned, which violates the standard. This change removes one of the main categories and adds an auxillary category.
Diffstat (limited to 'pkgs/applications/blockchains/bisq-desktop/default.nix')
-rw-r--r--pkgs/applications/blockchains/bisq-desktop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/bisq-desktop/default.nix b/pkgs/applications/blockchains/bisq-desktop/default.nix
index 715de18a8fa38..700bedf17cec5 100644
--- a/pkgs/applications/blockchains/bisq-desktop/default.nix
+++ b/pkgs/applications/blockchains/bisq-desktop/default.nix
@@ -62,9 +62,9 @@ stdenv.mkDerivation rec {
       name = "Bisq";
       exec = "bisq-desktop";
       icon = "bisq";
-      desktopName = "Bisq";
+      desktopName = "Bisq ${version}";
       genericName = "Decentralized bitcoin exchange";
-      categories = "Network;Utility;";
+      categories = "Network;P2P;";
     })
   ];