Merge pull request #29658 from teto/ctags

universal-ctags: generate manpage
This commit is contained in:
Joachim F 2017-09-23 12:04:06 +00:00 committed by GitHub
commit dbf4d4ebb5

View File

@ -1,21 +1,19 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, pythonPackages }:
stdenv.mkDerivation rec {
name = "universal-ctags-${version}";
version = "2017-01-08";
version = "2017-09-22";
src = fetchFromGitHub {
owner = "universal-ctags";
repo = "ctags";
rev = "9668032d8715265ca5b4ff16eb2efa8f1c450883";
sha256 = "0nwcf5mh3ba0g23zw7ym73pgpfdass412k2fy67ryr9vnc709jkj";
rev = "b9537289952cc7b26526aaff3094599d714d1729";
sha256 = "1kbw9ycl2ddzpfs1v4rbqa4gdhw4inrisf4awyaxb7zxfxmbzk1g";
};
nativeBuildInputs = [ pythonPackages.docutils ];
buildInputs = [ autoreconfHook pkgconfig ];
# remove when https://github.com/universal-ctags/ctags/pull/1267 is merged
patches = [ ./sed-test.patch ];
autoreconfPhase = ''
./autogen.sh --tmpdir
'';