about summary refs log tree commit diff
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
parent562b876e2c17dce56c599fd04f0be15d750c32f0 (diff)
eventlog: cleanup
-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 ba4155db1e3cf..b5b4bc556f693 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;
   };
 }