mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
Merge pull request #70199 from tredontho/tredontho/universal-ctags-jansson
universal-ctags: Add jansson dependency
This commit is contained in:
commit
a65eab246b
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue