summary refs log tree commit diff
path: root/doc/languages-frameworks/lua.section.md
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-01-10 22:30:22 +0100
committerProfpatsch <mail@profpatsch.de>2021-01-11 09:52:27 +0100
commitb0c1583a0b606560a4a47322fc849cfc1cfa0090 (patch)
tree9aaa3f124d722c2e6231fd1f6bfa38e9d6d1fabc /doc/languages-frameworks/lua.section.md
parent9ff73686ed0127d9cc65633053e6d7a554ff179a (diff)
downloadnixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.tar
nixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.tar.gz
nixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.tar.bz2
nixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.tar.lz
nixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.tar.xz
nixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.tar.zst
nixpkgs-b0c1583a0b606560a4a47322fc849cfc1cfa0090.zip
doc: stdenv.lib -> lib
Part of: https://github.com/NixOS/nixpkgs/issues/108938

Changing the documentation to not refer to stdenv.lib is the first
step to make people use it directly.
Diffstat (limited to 'doc/languages-frameworks/lua.section.md')
-rw-r--r--doc/languages-frameworks/lua.section.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/languages-frameworks/lua.section.md b/doc/languages-frameworks/lua.section.md
index 248e5971818..d81949c75f6 100644
--- a/doc/languages-frameworks/lua.section.md
+++ b/doc/languages-frameworks/lua.section.md
@@ -181,7 +181,7 @@ luaposix = buildLuarocksPackage {
   disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
   propagatedBuildInputs = [ bit32 lua std_normalize ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "https://github.com/luaposix/luaposix/";
     description = "Lua bindings for POSIX";
     maintainers = with maintainers; [ vyp lblasc ];
@@ -243,4 +243,3 @@ Following rules should be respected:
 
 * Make sure libraries build for all Lua interpreters.
 * Commit names of Lua libraries should reflect that they are Lua libraries, so write for example `luaPackages.luafilesystem: 1.11 -> 1.12`.
-