Merge pull request #1385 from lovek323/vim-golang

vimPlugins.golang: add expression
This commit is contained in:
Domen Kožar 2013-12-22 03:47:49 -08:00
commit fc9c17caf0

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 {