Merge pull request #29938 from pmahoney/universal-ctags-darwin
universal-ctags: include libiconv on darwin
This commit is contained in:
commit
fced3c2f18
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "universal-ctags-${version}";
|
name = "universal-ctags-${version}";
|
||||||
@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1kbw9ycl2ddzpfs1v4rbqa4gdhw4inrisf4awyaxb7zxfxmbzk1g";
|
sha256 = "1kbw9ycl2ddzpfs1v4rbqa4gdhw4inrisf4awyaxb7zxfxmbzk1g";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonPackages.docutils ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ];
|
||||||
buildInputs = [ autoreconfHook pkgconfig ];
|
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
autoreconfPhase = ''
|
autoreconfPhase = ''
|
||||||
./autogen.sh --tmpdir
|
./autogen.sh --tmpdir
|
||||||
|
Loading…
x
Reference in New Issue
Block a user