Stop using deprecated builder

This commit is contained in:
Jeremy Wall 2024-01-05 16:12:25 -05:00
parent 2664a47219
commit 3357c037e6
3 changed files with 7 additions and 7 deletions

View File

@ -53,10 +53,10 @@
inherit (pkgs) fetchFromGitHub; inherit (pkgs) fetchFromGitHub;
}; };
harpoon-nvim = pkgs.callPackage ./harpoon-nvim.nix { harpoon-nvim = pkgs.callPackage ./harpoon-nvim.nix {
inherit (pkgs.vimUtils) buildVimPluginFrom2Nix; inherit (pkgs.vimUtils) buildVimPlugin;
harpoonSrc = harpoon-src; harpoonSrc = harpoon-src;
}; };
nvim-treesitter-context = pkgs.vimUtils.buildVimPluginFrom2Nix { nvim-treesitter-context = pkgs.vimUtils.buildVimPlugin {
name = "nvim-treesitter-context"; name = "nvim-treesitter-context";
src = treesitter-context; src = treesitter-context;
}; };

View File

@ -1,5 +1,5 @@
{buildVimPluginFrom2Nix, harpoonSrc, ...}: {buildVimPlugin, harpoonSrc, ...}:
buildVimPluginFrom2Nix { buildVimPlugin {
name = "harpoon"; name = "harpoon";
src = harpoonSrc; src = harpoonSrc;
} }

6
nix/darwin/flake.lock generated
View File

@ -36,12 +36,12 @@
}, },
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-h8APs3KV8oU8sWYFEpSpqFjqJ/QY2a2L90BDfad5VUo=", "narHash": "sha256-V/t8UhlpbGYByMB1kBdPn2kHLgUlWdOKX4e3XFgDIi4=",
"path": "/nix/store/0jd7ginq0vz1gglni90j5bzj4bk4ly7q-source/nix/base-system", "path": "/nix/store/mmp67clvw8ypsi8vfc17i4mvzr19hnxd-source/nix/base-system",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "/nix/store/0jd7ginq0vz1gglni90j5bzj4bk4ly7q-source/nix/base-system", "path": "/nix/store/mmp67clvw8ypsi8vfc17i4mvzr19hnxd-source/nix/base-system",
"type": "path" "type": "path"
} }
}, },