about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-20 03:45:17 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-20 14:25:55 +0100
commit15cf1bacec81d3905d40b8005f88bb3ad8dc5a56 (patch)
tree77989027c855c7223d29324e81f61c5e3bd8eea3 /pkgs/applications/window-managers
parent42841c10e5967007541bbf23423b216882923940 (diff)
treewide: don't use pname for mainProgram where pname is static
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/dwm/dwm-status.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/window-managers/dwm/dwm-status.nix b/pkgs/applications/window-managers/dwm/dwm-status.nix
index 424528e9c1aa8..1d5f84abe288b 100644
--- a/pkgs/applications/window-managers/dwm/dwm-status.nix
+++ b/pkgs/applications/window-managers/dwm/dwm-status.nix
@@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec {
     changelog = "https://github.com/Gerschtli/dwm-status/blob/master/CHANGELOG.md";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ gerschtli ];
-    mainProgram = pname;
+    mainProgram = "dwm-status";
     platforms = platforms.linux;
   };
 }