lib: remove dependency on pkgs

This commit is contained in:
Matt Sturgeon 2024-12-15 05:23:06 +00:00
parent 9e6b207401
commit 32027965d8
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
6 changed files with 28 additions and 35 deletions

View file

@ -158,3 +158,18 @@ lib.fix (builders: {
}
);
})
# Removed because it depended on `pkgs`
# Deprecated 2024-09-13; Removed 2024-12-15
//
lib.genAttrs
[
"byteCompileLuaDrv"
"byteCompileLuaFile"
"byteCompileLuaHook"
"writeByteCompiledLua"
"writeLua"
]
(
name:
throw "`${name}` is no longer available directly. You can access it via `withPkgs` or use `${name}With`."
)