vimPlugins.tagbar: add expression
This commit is contained in:
parent
aa0df547a8
commit
575be7dd4b
1 changed files with 21 additions and 1 deletions
|
@ -203,7 +203,7 @@ in
|
|||
meta = with stdenv.lib; {
|
||||
description = "Source code browser plugin";
|
||||
homepage = "http://www.vim.org/scripts/script.php?script_id=273";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -222,6 +222,26 @@ in
|
|||
path = "taglist";
|
||||
};
|
||||
|
||||
tagbar = simpleDerivation rec {
|
||||
version = "2.5";
|
||||
name = "vim-tagbar-${version}";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A vim plugin for browsing the tags of source code files";
|
||||
homepage = https://github.com/majutsushi/tagbar;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/majutsushi/tagbar/archive/v${version}.tar.gz";
|
||||
sha256 = "1s4aic3qbk2ra2cif06g16d0avlmpxhrm96dksrw9qnv4hcjqqxr";
|
||||
};
|
||||
|
||||
path = "tagbar";
|
||||
};
|
||||
|
||||
xdebug = simpleDerivation {
|
||||
name = "vim-xdebug-a4980fa65f7f159780593ee37c178281691ba2c4";
|
||||
src = fetchurl {
|
||||
|
|
Loading…
Reference in a new issue