about summary refs log tree commit diff
path: root/pkgs/applications/misc/tsukae
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/misc/tsukae
parent42841c10e5967007541bbf23423b216882923940 (diff)
treewide: don't use pname for mainProgram where pname is static
Diffstat (limited to 'pkgs/applications/misc/tsukae')
-rw-r--r--pkgs/applications/misc/tsukae/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/tsukae/default.nix b/pkgs/applications/misc/tsukae/default.nix
index 0a01758b2c47d..fcd211769677c 100644
--- a/pkgs/applications/misc/tsukae/default.nix
+++ b/pkgs/applications/misc/tsukae/default.nix
@@ -17,7 +17,7 @@ buildGoModule rec {
     description = "Show off your most used shell commands.";
     homepage = "https://github.com/irevenko/tsukae";
     license = licenses.mit;
-    mainProgram = pname;
+    mainProgram = "tsukae";
     maintainers = with maintainers; [ l3af ];
   };
 }