treewide: stdenv.lib -> lib

https://github.com/NixOS/nixpkgs/issues/108938
This commit is contained in:
2021-02-01 08:45:20 +11:00
parent 0c87ddac9e
commit b960c361a9
13 changed files with 33 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
{ stdenv
, lib
, fetchFromGitHub
, installShellFiles
@@ -25,10 +26,10 @@ stdenv.mkDerivation {
installShellCompletion --zsh _zshz
'';
meta = {
meta = with lib; {
description = ''Jump quickly to directories that you have visited "frecently." A native ZSH port of z.sh.'';
homepage = "https://github.com/agkozak/zsh-z";
license = stdenv.lib.licenses.mit;
license = licenses.mit;
platforms = zsh.meta.platforms;
};
}