about summary refs log tree commit diff
path: root/pkgs/tools/system/consul-template/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/system/consul-template/default.nix')
-rw-r--r--pkgs/tools/system/consul-template/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix
index fc388dd7cea4d..7604584e16754 100644
--- a/pkgs/tools/system/consul-template/default.nix
+++ b/pkgs/tools/system/consul-template/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
+{ lib, stdenv, buildGoModule, fetchFromGitHub }:
 
 buildGoModule rec {
   pname = "consul-template";
@@ -17,7 +17,7 @@ buildGoModule rec {
   # execute tests so we skip them here
   doCheck = false;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "https://github.com/hashicorp/consul-template/";
     description = "Generic template rendering and notifications with Consul";
     platforms = platforms.linux ++ platforms.darwin;