summary refs log tree commit diff
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-07-09 04:43:41 +0000
committerGitHub <noreply@github.com>2018-07-09 04:43:41 +0000
commit6f1134ff8b03efb11cee47636930d92b86b0f71c (patch)
tree5bfa729a2f706dd060f4e1f6a127dd100f1d7090
parent06ed05d3b9f5d3dc93d008472d4b1a9403cb910c (diff)
downloadnixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.tar
nixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.tar.gz
nixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.tar.bz2
nixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.tar.lz
nixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.tar.xz
nixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.tar.zst
nixpkgs-6f1134ff8b03efb11cee47636930d92b86b0f71c.zip
nixos/journalwatch: fix evaluation
-rw-r--r--nixos/modules/services/logging/journalwatch.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/logging/journalwatch.nix b/nixos/modules/services/logging/journalwatch.nix
index adabc645914..2c9bc18c8c3 100644
--- a/nixos/modules/services/logging/journalwatch.nix
+++ b/nixos/modules/services/logging/journalwatch.nix
@@ -241,6 +241,6 @@ in {
   };
 
   meta = {
-    maintainers = with stdenv.lib.maintainers; [ florianjacob ];
+    maintainers = with lib.maintainers; [ florianjacob ];
   };
 }