about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim/neovim-qt.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/neovim/neovim-qt.nix')
-rw-r--r--pkgs/applications/editors/neovim/neovim-qt.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/applications/editors/neovim/neovim-qt.nix b/pkgs/applications/editors/neovim/neovim-qt.nix
deleted file mode 100644
index 75067585653bf..0000000000000
--- a/pkgs/applications/editors/neovim/neovim-qt.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ lib, mkDerivation, fetchFromGitHub, cmake, doxygen, msgpack, neovim, python3Packages, qtbase, qtsvg }:
-
-mkDerivation rec {
-  pname = "neovim-qt-unwrapped";
-  version = "0.2.18";
-
-  src = fetchFromGitHub {
-    owner  = "equalsraf";
-    repo   = "neovim-qt";
-    rev    = "v${version}";
-    sha256 = "sha256-BitFHHwL2aqBUpY/8eHaZIFvnDCeABC6w33Vmbx0z2g=";
-  };
-
-  cmakeFlags = [
-    "-DUSE_SYSTEM_MSGPACK=1"
-    "-DENABLE_TESTS=0"  # tests fail because xcb platform plugin is not found
-  ];
-
-  buildInputs = [
-    neovim.unwrapped # only used to generate help tags at build time
-    qtbase
-    qtsvg
-  ] ++ (with python3Packages; [
-    jinja2 python msgpack
-  ]);
-
-  nativeBuildInputs = [ cmake doxygen ];
-
-  preCheck = ''
-    # The GUI tests require a running X server, disable them
-    sed -i ../test/CMakeLists.txt -e '/^add_xtest_gui/d'
-  '';
-
-  doCheck = true;
-
-  meta = with lib; {
-    description = "Neovim client library and GUI, in Qt5";
-    homepage = "https://github.com/equalsraf/neovim-qt";
-    license     = licenses.isc;
-    mainProgram = "nvim-qt";
-    maintainers = with maintainers; [ peterhoeg ];
-    inherit (neovim.meta) platforms;
-  };
-}