608fe16482
We now also run some of the tests which is better than nothing.
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, doxygen, makeWrapper
|
|
, libmsgpack, neovim, pythonPackages, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "neovim-qt-${version}";
|
|
version = "0.2.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "equalsraf";
|
|
repo = "neovim-qt";
|
|
rev = "v${version}";
|
|
sha256 = "190yg6kkw953h8wajlqr2hvs2fz65y6z0blmywlg1nff724allaq";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DMSGPACK_INCLUDE_DIRS=${libmsgpack}/include"
|
|
"-DMSGPACK_LIBRARIES=${libmsgpack}/lib/libmsgpackc.so"
|
|
];
|
|
|
|
buildInputs = with pythonPackages; [
|
|
neovim qtbase libmsgpack
|
|
] ++ (with pythonPackages; [
|
|
jinja2 msgpack python
|
|
]);
|
|
|
|
nativeBuildInputs = [ cmake doxygen makeWrapper ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
# avoid cmake trying to download libmsgpack
|
|
echo "" > third-party/CMakeLists.txt
|
|
# we rip out a number of tests that fail in the build env
|
|
# the GUI tests will never work but the others should - they did before neovim 0.2.0
|
|
# was released
|
|
sed -i test/CMakeLists.txt \
|
|
-e '/^add_xtest_gui/d' \
|
|
-e '/tst_neovimconnector/d' \
|
|
-e '/tst_callallmethods/d' \
|
|
-e '/tst_encoding/d'
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/nvim-qt" \
|
|
--prefix PATH : "${neovim}/bin"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Neovim client library and GUI, in Qt5";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (neovim.meta) platforms;
|
|
inherit version;
|
|
};
|
|
}
|