about summary refs log tree commit diff
path: root/pkgs/tools/networking/gandi-cli/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/gandi-cli/default.nix')
-rw-r--r--pkgs/tools/networking/gandi-cli/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/gandi-cli/default.nix b/pkgs/tools/networking/gandi-cli/default.nix
index b323cde28bc28..e66d5b7c2a5ba 100644
--- a/pkgs/tools/networking/gandi-cli/default.nix
+++ b/pkgs/tools/networking/gandi-cli/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, python3Packages, fetchFromGitHub }:
+{ lib, stdenv, python3Packages, fetchFromGitHub }:
 
 with python3Packages;
 
@@ -17,7 +17,7 @@ buildPythonApplication rec {
 
   doCheck = false;    # Tests try to contact the actual remote API
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Command-line interface to the public Gandi.net API";
     homepage = "https://cli.gandi.net/";
     license = licenses.gpl3Plus;