mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
ldns: Compat with perl 5.22
This commit is contained in:
parent
3faf5b53a5
commit
318ac091b2
@ -8,11 +8,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i 's,\$(srcdir)/doc/doxyparse.pl,perl $(srcdir)/doc/doxyparse.pl,' Makefile.in
|
||||
patches = [ ./perl-5.22-compat.patch ];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs doc/doxyparse.pl
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl perl ];
|
||||
nativeBuildInputs = [ perl ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
configureFlags = [ "--with-ssl=${openssl}" "--with-drill" ];
|
||||
|
||||
|
12
pkgs/development/libraries/ldns/perl-5.22-compat.patch
Normal file
12
pkgs/development/libraries/ldns/perl-5.22-compat.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -Naur old/doc/doxyparse.pl new/doc/doxyparse.pl
|
||||
--- old/doc/doxyparse.pl 2014-01-11 06:04:41.000000000 +0900
|
||||
+++ new/doc/doxyparse.pl 2015-08-08 22:29:34.216889652 +0900
|
||||
@@ -273,7 +273,7 @@
|
||||
|
||||
print MAN $MAN_MIDDLE;
|
||||
|
||||
- if (defined(@$also)) {
|
||||
+ if (@$also) {
|
||||
print MAN "\n.SH SEE ALSO\n\\fI";
|
||||
print MAN join "\\fR, \\fI", @$also;
|
||||
print MAN "\\fR.\nAnd ";
|
Loading…
Reference in New Issue
Block a user