-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathneotest-haskell-scm-1.rockspec
37 lines (30 loc) · 1 KB
/
neotest-haskell-scm-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
local modrev = 'scm'
local specrev = '1'
local repo_url = 'https://github.com/mrcjkb/neotest-haskell'
rockspec_format = '3.0'
package = 'neotest-haskell'
version = modrev ..'-'.. specrev
description = {
summary = 'Neotest adapter for Haskell (cabal or stack) with support for Sydtest, Hspec and Tasty',
detailed = [[
Supports Cabal projects.
Supports Stack projects.
Parses Sydtest, Hspec and Tasty filters for the cursor's position using TreeSitter.
Parses test results and displays error messages as virtual text.]],
labels = { 'haskell', 'hspec', 'neovim', 'neovim-plugin', 'sydtest', 'tasty', 'testing', 'treesitter' } ,
homepage = 'https://github.com/mrcjkb/neotest-haskell',
license = 'GPL-2.0'
}
dependencies = {
'lua >= 5.1',
'neotest',
-- 'tree-sitter-haskell', -- Currently using tree-sitter-haskell from nixpkgs in CI
}
test_dependencies = { 'nvim-nio', 'neotest', }
source = {
url = repo_url:gsub('https', 'git')
}
build = {
type = 'builtin',
copy_directories = { 'doc', 'queries' } ,
}