3
0
Fork 0
forked from mirrors/nixpkgs

qvim: chage platforms from 'unix' to 'linux'

I have no Darwin machine available so lets test qvim on Linux for now
This commit is contained in:
Sergey Mironov 2013-11-08 12:23:04 +04:00
parent 139b10eb93
commit 2b1b4f3d3a

View file

@ -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;
};
})