neovim-qt: add qtsvg depedency (#135683)

Co-authored-by: Christoph Neidahl <christoph.neidahl@gmail.com>
This commit is contained in:
ners 2021-08-26 00:59:47 +02:00 committed by GitHub
parent 32a004d762
commit 761c93e410
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ lib, mkDerivation, fetchFromGitHub, cmake, doxygen, makeWrapper
, msgpack, neovim, python3Packages, qtbase }:
, msgpack, neovim, python3Packages, qtbase, qtsvg }:
mkDerivation rec {
pname = "neovim-qt-unwrapped";
@ -20,6 +20,7 @@ mkDerivation rec {
buildInputs = [
neovim.unwrapped # only used to generate help tags at build time
qtbase
qtsvg
] ++ (with python3Packages; [
jinja2 python msgpack
]);