universal-ctags: Add jansson dependency
Add jansson dependency to enable JSON support
This commit is contained in:
parent
1e148f1a33
commit
f2eabd49fc
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages, libiconv }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages, libiconv, jansson }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "universal-ctags";
|
pname = "universal-ctags";
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ];
|
||||||
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
buildInputs = [ jansson ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
# to generate makefile.in
|
# to generate makefile.in
|
||||||
autoreconfPhase = ''
|
autoreconfPhase = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user