summary refs log tree commit diff
path: root/pkgs/applications/editors/vim
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-26 17:01:16 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-27 01:22:43 +0200
commitb84588cbdedc99c3b119d4226d1af6d18167c195 (patch)
tree1eb9cc055724e2143ef24e9f375bb4a850a54932 /pkgs/applications/editors/vim
parentbd67bfa3065e34a4719ac0da3fd02587aa999b7b (diff)
downloadnixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.tar
nixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.tar.gz
nixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.tar.bz2
nixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.tar.lz
nixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.tar.xz
nixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.tar.zst
nixlib-b84588cbdedc99c3b119d4226d1af6d18167c195.zip
vim (all builds): add licence information
Diffstat (limited to 'pkgs/applications/editors/vim')
-rw-r--r--pkgs/applications/editors/vim/configurable.nix1
-rw-r--r--pkgs/applications/editors/vim/default.nix1
-rw-r--r--pkgs/applications/editors/vim/macvim.nix1
-rw-r--r--pkgs/applications/editors/vim/qvim.nix1
4 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index e6c2cacc49ad..b40e797f7ea4 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -190,6 +190,7 @@ composableDerivation {
   meta = with stdenv.lib; {
     description = "The most popular clone of the VI editor";
     homepage    = http://www.vim.org;
+    license = with licenses; [ vim ];
     maintainers = with maintainers; [ lovek323 ];
     platforms   = platforms.unix;
   };
diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix
index 4f14aade5a5d..b13925fe14e6 100644
--- a/pkgs/applications/editors/vim/default.nix
+++ b/pkgs/applications/editors/vim/default.nix
@@ -49,6 +49,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "The most popular clone of the VI editor";
     homepage    = http://www.vim.org;
+    license = with licenses; [ vim ];
     maintainers = with maintainers; [ lovek323 ];
     platforms   = platforms.unix;
   };
diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix
index 784be80ecf48..4519d4c26269 100644
--- a/pkgs/applications/editors/vim/macvim.nix
+++ b/pkgs/applications/editors/vim/macvim.nix
@@ -87,6 +87,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Vim - the text editor - for Mac OS X";
     homepage    = https://github.com/b4winckler/macvim;
+    license = with licenses; [ vim ];
     maintainers = with maintainers; [ cstrahan ];
     platforms   = platforms.darwin;
   };
diff --git a/pkgs/applications/editors/vim/qvim.nix b/pkgs/applications/editors/vim/qvim.nix
index b9e3d668d623..42ed3daa6888 100644
--- a/pkgs/applications/editors/vim/qvim.nix
+++ b/pkgs/applications/editors/vim/qvim.nix
@@ -118,6 +118,7 @@ composableDerivation {
   meta = with stdenv.lib; {
     description = "The most popular clone of the VI editor (Qt GUI fork)";
     homepage    = https://bitbucket.org/equalsraf/vim-qt/wiki/Home;
+    license = with licenses; [ vim ];
     maintainers = with maintainers; [ smironov ttuegel ];
     platforms   = platforms.linux;
   };