biscuit/pkgs/maps/shell.nix

10 lines
227 B
Nix
Raw Normal View History

2024-07-22 21:25:25 +00:00
with import <nixpkgs> {};
let package = pkgs.callPackage ./. {};
in
package.overrideAttrs(o: {
shellHook = ''
export LUA_CPATH=$(lua -e "print(package.cpath)")
export LUA_PATH=$(lua -e "print(package.path)")
'';
})