buildLuarocksPackage: rename file to match its role

This commit is contained in:
Matthieu Coudron
2023-07-10 10:34:34 +02:00
parent b3bbad8917
commit 34b3a809ef
3 changed files with 2 additions and 2 deletions
+1 -1
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 {
+1 -1
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 { };