about summary refs log tree commit diff
path: root/pkgs/shells/zsh/zsh-prezto
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/zsh/zsh-prezto')
-rw-r--r--pkgs/shells/zsh/zsh-prezto/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/zsh/zsh-prezto/default.nix b/pkgs/shells/zsh/zsh-prezto/default.nix
index dffecf617b17a..138de38786be1 100644
--- a/pkgs/shells/zsh/zsh-prezto/default.nix
+++ b/pkgs/shells/zsh/zsh-prezto/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub }:
+{ lib, stdenv, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   pname = "zsh-prezto";
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     mkdir -p $out
     cp ./* $out/ -R
   '';
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Prezto is the configuration framework for Zsh; it enriches the command line interface environment with sane defaults, aliases, functions, auto completion, and prompt themes";
     homepage = "https://github.com/sorin-ionescu/prezto";
     license = licenses.mit;