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}:
stdenv.mkDerivation rec {
pname = "zsh-bd";
@@ -23,9 +23,9 @@ stdenv.mkDerivation rec {
meta = {
description = "Jump back to a specific directory, without doing `cd ../../..` ";
homepage = "https://github.com/Tarrasch/zsh-bd";
license = stdenv.lib.licenses.free;
license = lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.olejorgenb ];
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.olejorgenb ];
};
}