vimPlugins.golang: add expression

This commit is contained in:
Jason "Don" O'Conal 2013-12-16 01:21:23 +00:00
parent ed9ce850fd
commit c95b774f52

View file

@ -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
@ -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 {
name = "vim-ipython-ff8f88f3fe518851a91dc88aaa5a75f8f352a960";
src = fetchurl {