summary refs log tree commit diff
path: root/pkgs/build-support/make-desktopitem/default.nix
diff options
context:
space:
mode:
authorLeon Vack <dev@lvack.com>2020-10-15 14:24:23 +0200
committerLeon Vack <dev@lgcl.de>2020-10-15 14:29:32 +0200
commitf275b320d9721cc49f0aec1c7918483c2ae6f568 (patch)
tree9e987662a795398ab33a33f416c0c3491bd97a3f /pkgs/build-support/make-desktopitem/default.nix
parentee813768c05344b29995b726553aa059f58603a0 (diff)
downloadnixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.tar
nixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.tar.gz
nixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.tar.bz2
nixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.tar.lz
nixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.tar.xz
nixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.tar.zst
nixpkgs-f275b320d9721cc49f0aec1c7918483c2ae6f568.zip
make-desktopitem: name was being used instead of desktopName
Name should be used as filename and desktopName for the name attribute of the desktop entry (according to docs).
Diffstat (limited to 'pkgs/build-support/make-desktopitem/default.nix')
-rw-r--r--pkgs/build-support/make-desktopitem/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/make-desktopitem/default.nix b/pkgs/build-support/make-desktopitem/default.nix
index fd46e298513..8e51dc1b848 100644
--- a/pkgs/build-support/make-desktopitem/default.nix
+++ b/pkgs/build-support/make-desktopitem/default.nix
@@ -30,7 +30,7 @@ let
     "Icon" = nullableToString icon;
     "Comment" = nullableToString comment;
     "Terminal" = nullableToString terminal;
-    "Name" = toString name;
+    "Name" = toString desktopName;
     "GenericName" = nullableToString genericName;
     "MimeType" = nullableToString mimeType;
     "Categories" = nullableToString categories;