-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more like a refactoring. It was already available but via neovim-qt.passthru.unwrapped Co-authored-by: Sandro <[email protected]>
- Loading branch information
Showing
3 changed files
with
77 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, doxygen, makeWrapper | ||
, msgpack, neovim, pythonPackages, qtbase }: | ||
|
||
mkDerivation rec { | ||
pname = "neovim-qt-unwrapped"; | ||
version = "0.2.16.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "equalsraf"; | ||
repo = "neovim-qt"; | ||
rev = "v${version}"; | ||
sha256 = "0x5brrim3f21bzdmh6wyrhrislwpx1248wbx56csvic6v78hzqny"; | ||
}; | ||
|
||
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 | ||
] ++ (with pythonPackages; [ | ||
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; | ||
maintainers = with maintainers; [ peterhoeg ]; | ||
inherit (neovim.meta) platforms; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,38 @@ | ||
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, doxygen, makeWrapper | ||
, msgpack, neovim, pythonPackages, qtbase }: | ||
, msgpack, neovim, pythonPackages, qtbase, neovim-qt-unwrapped }: | ||
|
||
let | ||
unwrapped = mkDerivation rec { | ||
pname = "neovim-qt-unwrapped"; | ||
version = "0.2.16.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "equalsraf"; | ||
repo = "neovim-qt"; | ||
rev = "v${version}"; | ||
sha256 = "0x5brrim3f21bzdmh6wyrhrislwpx1248wbx56csvic6v78hzqny"; | ||
}; | ||
|
||
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 | ||
] ++ (with pythonPackages; [ | ||
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; | ||
maintainers = with maintainers; [ peterhoeg ]; | ||
inherit (neovim.meta) platforms; | ||
inherit version; | ||
}; | ||
}; | ||
unwrapped = neovim-qt-unwrapped; | ||
in | ||
stdenv.mkDerivation { | ||
pname = "neovim-qt"; | ||
version = unwrapped.version; | ||
buildCommand = if stdenv.isDarwin then '' | ||
mkdir -p $out/Applications | ||
cp -r ${unwrapped}/bin/nvim-qt.app $out/Applications | ||
chmod -R a+w "$out/Applications/nvim-qt.app/Contents/MacOS" | ||
wrapProgram "$out/Applications/nvim-qt.app/Contents/MacOS/nvim-qt" \ | ||
--prefix PATH : "${neovim}/bin" | ||
'' else '' | ||
makeWrapper '${unwrapped}/bin/nvim-qt' "$out/bin/nvim-qt" \ | ||
--prefix PATH : "${neovim}/bin" | ||
# link .desktop file | ||
mkdir -p "$out/share/pixmaps" | ||
ln -s '${unwrapped}/share/applications' "$out/share/applications" | ||
ln -s '${unwrapped}/share/pixmaps/nvim-qt.png' "$out/share/pixmaps/nvim-qt.png" | ||
''; | ||
|
||
preferLocalBuild = true; | ||
|
||
nativeBuildInputs = [ | ||
makeWrapper | ||
]; | ||
|
||
passthru = { | ||
inherit unwrapped; | ||
}; | ||
stdenv.mkDerivation { | ||
pname = "neovim-qt"; | ||
version = unwrapped.version; | ||
buildCommand = if stdenv.isDarwin then '' | ||
mkdir -p $out/Applications | ||
cp -r ${unwrapped}/bin/nvim-qt.app $out/Applications | ||
chmod -R a+w $out/Applications/nvim-qt.app/Contents/MacOS | ||
wrapProgram $out/Applications/nvim-qt.app/Contents/MacOS/nvim-qt \ | ||
--prefix PATH : ${neovim}/bin | ||
'' else '' | ||
makeWrapper ${unwrapped}/bin/nvim-qt $out/bin/nvim-qt \ | ||
--prefix PATH : ${neovim}/bin | ||
# link .desktop file | ||
mkdir -p $out/share/pixmaps | ||
ln -s ${unwrapped}/share/applications $out/share/applications | ||
ln -s ${unwrapped}/share/pixmaps/nvim-qt.png $out/share/pixmaps/nvim-qt.png | ||
''; | ||
|
||
preferLocalBuild = true; | ||
|
||
nativeBuildInputs = [ | ||
makeWrapper | ||
]; | ||
|
||
passthru = { | ||
inherit unwrapped; | ||
}; | ||
|
||
inherit (unwrapped) meta; | ||
} | ||
inherit (unwrapped) meta; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters