vimPlugins.tagbar: add expression
This commit is contained in:
parent
aa0df547a8
commit
575be7dd4b
@ -203,7 +203,7 @@ in
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Source code browser plugin";
|
description = "Source code browser plugin";
|
||||||
homepage = "http://www.vim.org/scripts/script.php?script_id=273";
|
homepage = "http://www.vim.org/scripts/script.php?script_id=273";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ lovek323 ];
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
@ -222,6 +222,26 @@ in
|
|||||||
path = "taglist";
|
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 {
|
xdebug = simpleDerivation {
|
||||||
name = "vim-xdebug-a4980fa65f7f159780593ee37c178281691ba2c4";
|
name = "vim-xdebug-a4980fa65f7f159780593ee37c178281691ba2c4";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user