pkgs/shells: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 14:24:03 +07:00
parent f35b06e86d
commit e245ae3c3a
19 changed files with 45 additions and 45 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }:
{ lib, stdenv, fetchFromGitHub }:
# To make use of this derivation, use
# `programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel9k}/share/zsh-powerlevel9k/powerlevel9k.zsh-theme";`
@@ -21,9 +21,9 @@ stdenv.mkDerivation {
meta = {
description = "A beautiful theme for zsh";
homepage = "https://github.com/bhilburn/powerlevel9k";
license = stdenv.lib.licenses.mit;
license = lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.pierrechevalier83 ];
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.pierrechevalier83 ];
};
}