summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSergey Mironov <grrwlf@gmail.com>2013-11-08 12:23:04 +0400
committerSergey Mironov <grrwlf@gmail.com>2013-11-08 12:24:51 +0400
commit2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1 (patch)
tree17cb5244ed8b2ac32ba7a64c712c511b4327d048 /pkgs/applications
parent139b10eb93768ad75b505754d46c359d29fb5f81 (diff)
downloadnixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.tar
nixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.tar.gz
nixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.tar.bz2
nixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.tar.lz
nixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.tar.xz
nixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.tar.zst
nixlib-2b1b4f3d3a3b48b05916da29e44ae78a4b1532c1.zip
qvim: chage platforms from 'unix' to 'linux'
I have no Darwin machine available so lets test qvim on Linux for now
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/vim/qvim.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/editors/vim/qvim.nix b/pkgs/applications/editors/vim/qvim.nix
index ca8e71fc58f4..15a147319a15 100644
--- a/pkgs/applications/editors/vim/qvim.nix
+++ b/pkgs/applications/editors/vim/qvim.nix
@@ -19,7 +19,8 @@ composableDerivation {
       sha256 = "1qa3xl1b9gqw66p71h53l7ibs4y3zfyj553jss70ybxaxchbhi5b";
     };
 
-    # FIXME: adopt Darwin fixes from vim/default.nix
+    # FIXME: adopt Darwin fixes from vim/default.nix, then chage meta.platforms.linux
+    # to meta.platforms.unix
     preConfigure = assert (! stdenv.isDarwin); "";
 
     configureFlags = [ "--with-vim-name=qvim" "--enable-gui=qt" "--with-features=${args.features}" ];
@@ -108,7 +109,7 @@ composableDerivation {
     description = "The most popular clone of the VI editor (Qt GUI fork)";
     homepage    = https://bitbucket.org/equalsraf/vim-qt/wiki/Home;
     maintainers = with maintainers; [ smironov ];
-    platforms   = platforms.unix;
+    platforms   = platforms.linux;
   };
 })