about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorTrevor Thompson <tredontho@gmail.com>2019-10-01 11:27:59 -0500
committerTrevor Thompson <tredontho@gmail.com>2019-10-01 11:27:59 -0500
commitf2eabd49fc9bbad520eae5b83f5acf7e103e3014 (patch)
tree5d70fb10e23f7608ca69a9fa357b192a118d5781 /pkgs/development/tools/misc
parent1e148f1a33c334d79a16183c473fa41a5999a19b (diff)
downloadnixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.tar
nixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.tar.gz
nixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.tar.bz2
nixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.tar.lz
nixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.tar.xz
nixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.tar.zst
nixlib-f2eabd49fc9bbad520eae5b83f5acf7e103e3014.zip
universal-ctags: Add jansson dependency
Add jansson dependency to enable JSON support
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/universal-ctags/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/universal-ctags/default.nix b/pkgs/development/tools/misc/universal-ctags/default.nix
index 47aa49178141..906057719585 100644
--- a/pkgs/development/tools/misc/universal-ctags/default.nix
+++ b/pkgs/development/tools/misc/universal-ctags/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages, libiconv }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages, libiconv, jansson }:
 
 stdenv.mkDerivation {
   pname = "universal-ctags";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ];
-  buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
+  buildInputs = [ jansson ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
 
   # to generate makefile.in
   autoreconfPhase = ''