Skip to content

Commit 2c99575

Browse files
author
Peter Hoeg
committedMar 8, 2017
neovim-qt: 0.2.4 -> 0.2.5
1 parent 060f7cb commit 2c99575

File tree

1 file changed

+6
-5
lines changed
  • pkgs/applications/editors/neovim

1 file changed

+6
-5
lines changed
 

Diff for: ‎pkgs/applications/editors/neovim/qt.nix

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{ stdenv, fetchFromGitHub, cmake, doxygen
2-
, libmsgpack, makeWrapper, neovim, pythonPackages, qtbase }:
2+
, libmsgpack, makeQtWrapper, neovim, pythonPackages, qtbase }:
33

44
stdenv.mkDerivation rec {
55
name = "neovim-qt-${version}";
6-
version = "0.2.4";
6+
version = "0.2.5";
77

88
src = fetchFromGitHub {
99
owner = "equalsraf";
1010
repo = "neovim-qt";
1111
rev = "v${version}";
12-
sha256 = "0yf9wwkl0lbbj3vyf8hxnlsk7jhk5ggivszyqxply69dbar9ww59";
12+
sha256 = "1q706k400j5v9kans71yjz9p36ran2lpz29m4vjzj920llksln3d";
1313
};
1414

1515
cmakeFlags = [
@@ -25,15 +25,16 @@ stdenv.mkDerivation rec {
2525
jinja2 msgpack python
2626
]);
2727

28-
nativeBuildInputs = [ cmake doxygen makeWrapper ];
28+
nativeBuildInputs = [ cmake doxygen makeQtWrapper ];
2929

3030
enableParallelBuilding = true;
3131

3232
# avoid cmake trying to download libmsgpack
3333
preConfigure = "echo \"\" > third-party/CMakeLists.txt";
3434

3535
postInstall = ''
36-
wrapProgram "$out/bin/nvim-qt" --prefix PATH : "${neovim}/bin"
36+
wrapQtProgram "$out/bin/nvim-qt" \
37+
--prefix PATH : "${neovim}/bin"
3738
'';
3839

3940
meta = with stdenv.lib; {

0 commit comments

Comments
 (0)
Please sign in to comment.