Files
Austin Horstman cce7b734f9 vimPlugins.bitbake: preserve 6.0.2
BitBake removed contrib/vim after 6.0.2 because Vim 9.0.0067
includes the syntax files. Keep packaging the last tag that provides the
standalone plugin.
2026-08-17 16:17:39 -05:00

25 lines
437 B
Nix

{
fetchFromGitHub,
lib,
vimUtils,
}:
vimUtils.buildVimPlugin {
pname = "bitbake";
version = "6.0.2";
src = fetchFromGitHub {
owner = "openembedded";
repo = "bitbake";
tag = "yocto-6.0.2";
hash = "sha256-Jho1X7udSvh413u8ueRqR8z1Q7E2qcotdkzl9azBu7g=";
};
sourceRoot = "source/contrib/vim";
meta = {
homepage = "https://github.com/openembedded/bitbake";
license = lib.licenses.gpl2Only;
};
}