nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 vimUtils,
4 fetchFromSourcehut,
5 nix-update-script,
6}:
7vimUtils.buildVimPlugin {
8 pname = "hare.vim";
9 version = "0-unstable-2025-04-24";
10
11 src = fetchFromSourcehut {
12 owner = "~sircmpwn";
13 repo = "hare.vim";
14 rev = "41b8b615f46a39d807a9a069039aac79c925c389";
15 hash = "sha256-GPFoQI6tipcLzkvjaeufmMrNnQM46lPas9D1SwzjKF4=";
16 };
17
18 passthru.updateScript = nix-update-script { };
19
20 meta = {
21 description = "Hare programming in Vim";
22 homepage = "https://git.sr.ht/~sircmpwn/hare.vim";
23 license = lib.licenses.vim;
24 platforms = lib.platforms.all;
25 };
26}