Skip to content

Commit

Permalink
ci: use prebuilt norg parser for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed May 28, 2024
1 parent ef363f0 commit 96f7ab6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nix/overlays/installed-dependencies.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ in
nativeBuildInputs = [lua51Packages.luarocks wget];
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "sha256-tvMqTgTshVApj3muQyvwj+as/8b7tw1r0BlCTpMlGuU=";
outputHash = "sha256-Z9hODJb/vNqa2OhAo8IuOLJWTaa/63mu0mVxAlAGJnA=";
} ''
mkdir $PWD/home
export HOME=$PWD/home
mkdir -p $out/luarocks
${lib.concatStrings (lib.mapAttrsToList (name: version:
''
luarocks install --tree="$out/luarocks" --force-lock --local ${name} ${version}
luarocks install --server="https://nvim-neorocks.github.io/rocks-binaries/" --tree="$out/luarocks" --force-lock --local ${name} ${version}
luarocks download ${name} ${version}
''
+ "\n")
Expand Down
2 changes: 0 additions & 2 deletions nix/packages/integration-test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
neovim-unwrapped,
tree-sitter,
lua5_1,
gcc,
wget,
}: let
kickstart-config =
Expand Down Expand Up @@ -89,7 +88,6 @@ in
tree-sitter
lua5_1
wget
gcc
kickstart-config
];

Expand Down

0 comments on commit 96f7ab6

Please sign in to comment.