about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorAnton Mosich <anton@mosich.at>2023-08-03 14:31:09 +0200
committerAnton Mosich <anton@mosich.at>2023-08-03 14:41:45 +0200
commite1206bf0a501400740cdc2da1d9d71b3fd593202 (patch)
treeced7dfeea2302a4bbd7251f915b2c268a02c5c36 /pkgs/development
parente9fd5bf91302e22970be947f67bbecd5f749af48 (diff)
treewide: add `meta.mainProgram`
Add `meta.mainProgram` to all packages for which lib.getExe is called in
home-manager
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/pyenv/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/tools/pyenv/default.nix b/pkgs/development/tools/pyenv/default.nix
index bdc338bcfac5d..da10a9ba8f243 100644
--- a/pkgs/development/tools/pyenv/default.nix
+++ b/pkgs/development/tools/pyenv/default.nix
@@ -50,5 +50,6 @@ stdenv.mkDerivation rec {
     license = licenses.mit;
     maintainers = with maintainers; [ tjni ];
     platforms = platforms.all;
+    mainProgram = "pyenv";
   };
 }