summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2013-12-16 01:21:23 +0000
committerJason "Don" O'Conal <lovek323@gmail.com>2013-12-16 01:21:23 +0000
commitc95b774f524c0fbc4a78f1a071d79efd9469b0a4 (patch)
treef58f3e86fbaf6b46f56c703cf7b249c6448c8f95 /pkgs/misc
parented9ce850fd317e38295b7a441c580f9678b51ca6 (diff)
downloadnixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.tar
nixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.tar.gz
nixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.tar.bz2
nixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.tar.lz
nixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.tar.xz
nixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.tar.zst
nixpkgs-c95b774f524c0fbc4a78f1a071d79efd9469b0a4.zip
vimPlugins.golang: add expression
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/vim-plugins/default.nix18
1 files changed, 17 insertions, 1 deletions
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index 01ce5f423c3..40a0d7af496 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -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 {