vimPlugins.gitlab-vim: proper 0.1.1 update (#380976)

authored by Gaétan Lepage and committed by GitHub 369ba9a0 7ace2e7f

+6 -3
+6 -3
pkgs/applications/editors/vim/plugins/non-generated/gitlab-vim/default.nix
··· 4 fetchFromGitLab, 5 nix-update-script, 6 }: 7 vimUtils.buildVimPlugin { 8 pname = "gitlab.vim"; 9 - version = "0.1.1"; 10 11 src = fetchFromGitLab { 12 owner = "gitlab-org/editor-extensions"; 13 repo = "gitlab.vim"; 14 - rev = "62a60341df24ccecb73bc9ae34a198674bb12faf"; 15 - hash = "sha256-9G5H3MUdE++hR7p8nsoxK5kuA84k8oJBMvOa01PZrsA="; 16 }; 17 18 passthru.updateScript = nix-update-script { };
··· 4 fetchFromGitLab, 5 nix-update-script, 6 }: 7 + let 8 + version = "0.1.1"; 9 + in 10 vimUtils.buildVimPlugin { 11 pname = "gitlab.vim"; 12 + inherit version; 13 14 src = fetchFromGitLab { 15 owner = "gitlab-org/editor-extensions"; 16 repo = "gitlab.vim"; 17 + rev = "v${version}"; 18 + hash = "sha256-W/FV+i/QJYX6A8uyxAQN4ov1kMd9UFCghFmSQp1kbnM="; 19 }; 20 21 passthru.updateScript = nix-update-script { };