vimPlugins.golang: add expression
This commit is contained in:
parent
ed9ce850fd
commit
c95b774f52
|
@ -1,4 +1,4 @@
|
||||||
{ fetchurl, stdenv, python, cmake, vim, perl, ruby, unzip, which }:
|
{ fetchurl, stdenv, python, cmake, vim, perl, ruby, unzip, which, fetchgit }:
|
||||||
|
|
||||||
/*
|
/*
|
||||||
About Vim and plugins
|
About Vim and plugins
|
||||||
|
@ -197,6 +197,22 @@ in rec
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
golang = simpleDerivation {
|
||||||
|
name = "vim-golang-20131127";
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/jnwhiteh/vim-golang.git";
|
||||||
|
rev = "832d64e5a813511ed52217aa24f0255c49671bab";
|
||||||
|
};
|
||||||
|
path = "golang";
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Vim plugins for Go";
|
||||||
|
homepage = https://github.com/jnwhiteh/vim-golang;
|
||||||
|
license = licenses.publicDomain;
|
||||||
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
ipython = simpleDerivation {
|
ipython = simpleDerivation {
|
||||||
name = "vim-ipython-ff8f88f3fe518851a91dc88aaa5a75f8f352a960";
|
name = "vim-ipython-ff8f88f3fe518851a91dc88aaa5a75f8f352a960";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
|
Loading…
Reference in New Issue