Skip to content

Commit

Permalink
fix overlay?
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed May 3, 2023
1 parent fa01abd commit 57aaaa8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ with prev.lib; let

neolua-nightly-wrapper = mkNeoluaWrapper "neolua-nightly" neovim-nightly;

luajit-override =
luajit =
(prev.pkgs.luajit.overrideAttrs (old: {
postInstall = ''
${old.postInstall}
Expand All @@ -64,14 +64,14 @@ with prev.lib; let
'';
}))
.override {
self = luajit-override;
self = luajit;
};

neorocks = prev.pkgs.symlinkJoin {
name = "neorocks";
paths = [
luajit-override
luajit-override.pkgs.luarocks
final.luajit
final.luajitPackages.luarocks
neolua-stable-wrapper
neolua-nightly-wrapper
];
Expand All @@ -81,4 +81,5 @@ in {
haskellPackages
neorocks
;
luajitPackages = luajit.pkgs;
}

0 comments on commit 57aaaa8

Please sign in to comment.