summaryrefslogtreecommitdiff
path: root/pkgs/vim-janet/default.nix
blob: a0d8db49a44584635e5507d239eead4994ad93a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  vimUtils,
  fetchFromGitHub,
  janet,
}:
vimUtils.buildVimPlugin {
  pname = "janet.vim";
  version = "02-07-2023"; # day of commit

  src = fetchFromGitHub {
    owner = "janet-lang";
    repo = "janet.vim";
    rev = "dc14b02f2820bc2aca777a1eeec48627ae6555bf";
    hash = "sha256-FbwatEyvvB4VY5fIF+HgRqFdeuEQI2ceb2MrZAL/HlA=";
  };

  nativeBuildInputs = [janet];
}