about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-27 13:27:15 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-07-27 08:14:56 -0700
commit332e711c66883c769012363d72b6cfe87e41088b (patch)
tree1050171626d923c9f4bec1ebb0ccc33c94a1f035 /pkgs/development/libraries
parent562b876e2c17dce56c599fd04f0be15d750c32f0 (diff)
downloadnixlib-332e711c66883c769012363d72b6cfe87e41088b.tar
nixlib-332e711c66883c769012363d72b6cfe87e41088b.tar.gz
nixlib-332e711c66883c769012363d72b6cfe87e41088b.tar.bz2
nixlib-332e711c66883c769012363d72b6cfe87e41088b.tar.lz
nixlib-332e711c66883c769012363d72b6cfe87e41088b.tar.xz
nixlib-332e711c66883c769012363d72b6cfe87e41088b.tar.zst
nixlib-332e711c66883c769012363d72b6cfe87e41088b.zip
eventlog: cleanup
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/eventlog/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/eventlog/default.nix b/pkgs/development/libraries/eventlog/default.nix
index ba4155db1e3c..b5b4bc556f69 100644
--- a/pkgs/development/libraries/eventlog/default.nix
+++ b/pkgs/development/libraries/eventlog/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ autoreconfHook ];
 
-  meta = {
+  meta = with lib; {
     description = "Syslog event logger library";
     longDescription = ''
       The EventLog library aims to be a replacement of the simple syslog() API
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
       combination of description and tag/value pairs.
     '';
     homepage = "https://www.balabit.com/support/community/products/";
-    license = lib.licenses.bsd3;
-    platforms = lib.platforms.unix;
+    license = licenses.bsd3;
+    platforms = platforms.unix;
   };
 }