Skip to content

Commit a8fe508

Browse files
committed
vimPlugins.bitbake-vim: 2025-03-24 -> 2.8.8
Only track tagged releases.
1 parent 5eea50f commit a8fe508

File tree

1 file changed

+10
-5
lines changed
  • pkgs/applications/editors/vim/plugins/non-generated/bitbake-vim

1 file changed

+10
-5
lines changed

pkgs/applications/editors/vim/plugins/non-generated/bitbake-vim/default.nix

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,25 @@
33
fetchFromGitHub,
44
nix-update-script,
55
}:
6-
vimUtils.buildVimPlugin {
6+
vimUtils.buildVimPlugin rec {
77
pname = "bitbake-vim";
8-
version = "2025-03-24";
8+
version = "2.8.8";
99

1010
src = fetchFromGitHub {
1111
owner = "openembedded";
1212
repo = "bitbake";
13-
rev = "8cc976e2792fdde3900729f3b09dd18ab640b5e8";
14-
sha256 = "12k48zhd9bh3b8xjpang2xj14nhyla2p55r1is3m25wkqys10p9c";
13+
tag = version;
14+
hash = "sha256-ShNMTsDL2N2BxwsHetn9rSQdWUBtF/N1EVAbYHXgBSY=";
1515
};
1616

1717
sourceRoot = "source/contrib/vim";
1818

1919
meta.homepage = "https://github.com/openembedded/bitbake/";
2020

21-
passthru.updateScript = nix-update-script { };
21+
passthru.updateScript = nix-update-script {
22+
extraArgs = [
23+
"--version-regex"
24+
"^(\\d+\\.\\d+\\.\\d+)$"
25+
];
26+
};
2227
}

0 commit comments

Comments
 (0)