c4519cf8a6
* lua: add withPackages function First step towards more automation similar to the haskell backend. Follow up of https://github.com/NixOS/nixpkgs/pull/33903
18 lines
337 B
Nix
18 lines
337 B
Nix
# inspired by pkgs/development/haskell-modules/default.nix
|
|
{ pkgs, stdenv, lib
|
|
, lua
|
|
, overrides ? (self: super: {})
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) extends makeExtensible;
|
|
|
|
initialPackages = (pkgs.callPackage ../../top-level/lua-packages.nix {
|
|
inherit lua;
|
|
});
|
|
|
|
extensible-self = makeExtensible initialPackages;
|
|
in
|
|
extensible-self
|