Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 vimUtils, 3 fetchFromGitHub, 4}: 5vimUtils.buildVimPlugin rec { 6 pname = "bitbake-vim"; 7 version = "2.10.4"; 8 9 # The tags are very messy on the upstream repo. We prefer disabling automatic updates for this plugin. 10 # nixpkgs-update: no auto update 11 src = fetchFromGitHub { 12 owner = "openembedded"; 13 repo = "bitbake"; 14 tag = version; 15 hash = "sha256-gdxPnRhd4Hj1PWgCU5A/+639ndJXlkdArOBZt6eiZWA="; 16 }; 17 18 sourceRoot = "source/contrib/vim"; 19 20 meta.homepage = "https://github.com/openembedded/bitbake/"; 21}