summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2024-11-16 21:53:32 +1100
committerMichael Hoang <enzime@users.noreply.github.com>2024-11-18 10:43:28 +1100
commit23f312e48a252e348fc8884f2abc7975f976aac0 (patch)
treee5a3ca0904deeb77dd3ce94954067d113afbc51e /pkgs
parentc60b5c924c6188a0b3ca2e139ead3d0f92ae5db5 (diff)
nix-tools: set `meta.mainProgram`
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/nix-tools/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/nix-tools/default.nix b/pkgs/nix-tools/default.nix
index 4e4336a..5fdc382 100644
--- a/pkgs/nix-tools/default.nix
+++ b/pkgs/nix-tools/default.nix
@@ -17,6 +17,7 @@ let
inherit name src;
dir = "bin";
isExecutable = true;
+ meta.mainProgram = name;
} // env);
path = "${extraPath}:${systemPath}";