summary refs log tree commit diff
path: root/pkgs/development/tools/clpm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/clpm/default.nix')
-rw-r--r--pkgs/development/tools/clpm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/clpm/default.nix b/pkgs/development/tools/clpm/default.nix
index e051dfef19b3b..03174d6c4fcbb 100644
--- a/pkgs/development/tools/clpm/default.nix
+++ b/pkgs/development/tools/clpm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
 , fetchgit
 , wrapLisp
 , sbcl
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   # fixupPhase results in fatal error in SBCL, `Can't find sbcl.core`
   dontFixup = true;
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Common Lisp Package Manager";
     homepage = "https://www.clpm.dev/";
     license = licenses.bsd2;