mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
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.
25 lines
437 B
Nix
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;
|
|
};
|
|
}
|