vimPlugins.lsp_lines-nvim: proper 3.0.0 update (#380969)

authored by Gaétan Lepage and committed by GitHub 7ace2e7f bcfe6bf7

+6 -3
+6 -3
pkgs/applications/editors/vim/plugins/non-generated/lsp_lines-nvim/default.nix
··· 4 fetchFromSourcehut, 5 nix-update-script, 6 }: 7 vimUtils.buildVimPlugin { 8 pname = "lsp_lines.nvim"; 9 - version = "3.0.0"; 10 11 src = fetchFromSourcehut { 12 owner = "~whynothugo"; 13 repo = "lsp_lines.nvim"; 14 - rev = "a92c755f182b89ea91bd8a6a2227208026f27b4d"; 15 - hash = "sha256-jHiIZemneQACTDYZXBJqX2/PRTBoxq403ILvt1Ej1ZM="; 16 }; 17 18 passthru.updateScript = nix-update-script { };
··· 4 fetchFromSourcehut, 5 nix-update-script, 6 }: 7 + let 8 + version = "3.0.0"; 9 + in 10 vimUtils.buildVimPlugin { 11 pname = "lsp_lines.nvim"; 12 + inherit version; 13 14 src = fetchFromSourcehut { 15 owner = "~whynothugo"; 16 repo = "lsp_lines.nvim"; 17 + rev = "v${version}"; 18 + hash = "sha256-QsvmPOer7JgO7Y+N/iaNJD7Kmy69gnlV4CeyaQesNvA="; 19 }; 20 21 passthru.updateScript = nix-update-script { };