buildLuarocksPackage: rename file to match its role

This commit is contained in:
Matthieu Coudron 2023-07-09 17:45:02 +02:00
parent b3bbad8917
commit 34b3a809ef
3 changed files with 2 additions and 2 deletions

View file

@ -179,7 +179,7 @@ Each interpreter has the following attributes:
#### `buildLuarocksPackage` function {#buildluarockspackage-function}
The `buildLuarocksPackage` function is implemented in `pkgs/development/interpreters/lua-5/build-lua-package.nix`
The `buildLuarocksPackage` function is implemented in `pkgs/development/interpreters/lua-5/build-luarocks-package.nix`
The following is an example:
```nix
luaposix = buildLuarocksPackage {

View file

@ -19,7 +19,7 @@ let
buildLuaApplication = args: buildLuarocksPackage ({ namePrefix = ""; } // args);
buildLuarocksPackage = lib.makeOverridable (callPackage ../development/interpreters/lua-5/build-lua-package.nix { });
buildLuarocksPackage = lib.makeOverridable (callPackage ../development/interpreters/lua-5/build-luarocks-package.nix { });
luaLib = callPackage ../development/lua-modules/lib.nix { };