about summary refs log tree commit diff
path: root/pkgs/development/libraries/mongoc
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-04 17:52:27 -0700
committerMalo Bourgon <mbourgon@gmail.com>2022-05-04 18:11:50 -0700
commit9e4be532219685cdd81e4db54f9fc061d250ba25 (patch)
tree981ea8dadbb4974ed31df2e13049b7a7361d5669 /pkgs/development/libraries/mongoc
parent16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c (diff)
treewide: add meta.mainProgram to some libraries
where a single bin is provided and someone might actually want to run it
Diffstat (limited to 'pkgs/development/libraries/mongoc')
-rw-r--r--pkgs/development/libraries/mongoc/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/mongoc/default.nix b/pkgs/development/libraries/mongoc/default.nix
index e9779cf0a054f..8b5753b3aca99 100644
--- a/pkgs/development/libraries/mongoc/default.nix
+++ b/pkgs/development/libraries/mongoc/default.nix
@@ -19,8 +19,9 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "The official C client library for MongoDB";
-    homepage = "https://github.com/mongodb/mongo-c-driver";
+    homepage = "http://mongoc.org";
     license = licenses.asl20;
+    mainProgram = "mongoc-stat";
     platforms = platforms.all;
   };
 }