about summary refs log tree commit diff
path: root/pkgs/development/libraries/liblognorm/default.nix
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/liblognorm/default.nix
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/liblognorm/default.nix')
-rw-r--r--pkgs/development/libraries/liblognorm/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/liblognorm/default.nix b/pkgs/development/libraries/liblognorm/default.nix
index af4190f968333..184d9932eb281 100644
--- a/pkgs/development/libraries/liblognorm/default.nix
+++ b/pkgs/development/libraries/liblognorm/default.nix
@@ -15,9 +15,10 @@ stdenv.mkDerivation rec {
   configureFlags = [ "--enable-regexp" ];
 
   meta = with lib; {
-    homepage = "https://www.liblognorm.com/";
     description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form";
+    homepage = "https://www.liblognorm.com/";
     license = licenses.lgpl21;
+    mainProgram = "lognormalizer";
     platforms = platforms.all;
   };
 }