summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2013-07-14 23:04:33 -0700
committerDomen Kožar <domen@dev.si>2013-07-14 23:04:33 -0700
commitac1803f42494811072983e55cc6ccb24a5f981f2 (patch)
treec440d5e45b680656e47d12ad9ab2e777130476da /pkgs/applications/editors
parent9fe9527f579302cad4da0be06e9a7067b7c8ae11 (diff)
parent1d7d0addcc0df4ae50f5d11ece142f33bc241f5e (diff)
downloadnixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.tar
nixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.tar.gz
nixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.tar.bz2
nixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.tar.lz
nixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.tar.xz
nixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.tar.zst
nixlib-ac1803f42494811072983e55cc6ccb24a5f981f2.zip
Merge pull request #747 from lovek323/vim-plugins-command-t
vim-plugins: add expression command-t
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vim/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix
index ff8da0e09473..a3e40004550b 100644
--- a/pkgs/applications/editors/vim/default.nix
+++ b/pkgs/applications/editors/vim/default.nix
@@ -41,8 +41,10 @@ stdenv.mkDerivation rec {
     sed -i -e 's/as_fn_error.*int32.*/:/' src/auto/configure
   '';
   
-  meta = {
+  meta = with stdenv.lib; {
     description = "The most popular clone of the VI editor";
-    homepage = http://www.vim.org;
+    homepage    = http://www.vim.org;
+    maintainers = with maintainers; [ lovek323 ];
+    platforms   = platforms.unix;
   };
 }