mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
Merge pull request #1385 from lovek323/vim-golang
vimPlugins.golang: add expression
This commit is contained in:
commit
fc9c17caf0
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user