about summary refs log tree commit diff
path: root/pkgs/applications/editors/jetbrains
diff options
context:
space:
mode:
authorSteven Kou <skykinetic@stevenkou.xyz>2022-12-07 17:20:25 +0800
committerSteven Kou <skykinetic@stevenkou.xyz>2022-12-31 17:17:21 +0800
commit9ac60ccc7e3ddb3c2451793c61095e949c435318 (patch)
treefc3a4a71325f15ad02bd7b0885d74753c175f900 /pkgs/applications/editors/jetbrains
parent8c46c7ae2397286f1b3a0fd8fe0af4aef19800e9 (diff)
jetbrains.gateway: Fix product name
Diffstat (limited to 'pkgs/applications/editors/jetbrains')
-rw-r--r--pkgs/applications/editors/jetbrains/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index 1208db4424173..2f373a5f34f74 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -93,10 +93,10 @@ let
       };
     });
 
-  buildGateway = { pname, version, src, license, description, wmClass, ... }:
+  buildGateway = { pname, version, src, license, description, wmClass, product, ... }:
     (mkJetBrainsProduct {
-      inherit pname version src wmClass jdk;
-      product = "Gateway";
+      inherit pname version src wmClass jdk product;
+      productShort = "Gateway";
       meta = with lib; {
         homepage = "https://www.jetbrains.com/remote-development/gateway/";
         inherit description license platforms;
@@ -328,6 +328,7 @@ in
 
   gateway = buildGateway rec {
     pname = "gateway";
+    product = "JetBrains Gateway";
     version = products.gateway.version;
     description = "Your single entry point to all remote development environments";
     license = lib.licenses.unfree;