nixpkgs/pkgs/development/interpreters/lua-5/with-packages.nix
Matthieu Coudron c4519cf8a6 lua: add withPackages function (#54460)
* lua: add withPackages function

First step towards more automation similar to the haskell backend.
Follow up of https://github.com/NixOS/nixpkgs/pull/33903
2019-01-30 14:13:15 +00:00

5 lines
181 B
Nix

{ buildEnv, luaPackages }:
# this is a function that returns a function that returns an environment
f: let packages = f luaPackages; in buildEnv.override { extraLibs = packages; }