3
0
Fork 0
forked from mirrors/nixpkgs

intltool: fix problems with perl-5.22

http://hydra.nixos.org/build/33608086/nixlog/1/raw
This commit is contained in:
Vladimír Čunát 2016-03-29 11:12:42 +02:00
parent f4cb39c3d3
commit 117183e27e

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, gettext, perl, perlXMLParser }:
{ stdenv, fetchurl, fetchpatch, gettext, perl, perlXMLParser }:
stdenv.mkDerivation rec {
name = "intltool-${version}";
@ -9,6 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
};
# fix "unescaped left brace" errors when using intltool in some cases
patches = [(fetchpatch {
name = "perl-5.22.patch";
url = "https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/intltool"
+ "/debian/patches/perl5.22-regex-fixes?revision=47255&view=co";
sha256 = "17clqczb9fky7hp8czxa0fy82b5478irvz4f3fnans3sqxl95hx3";
})];
propagatedBuildInputs = [ gettext perl perlXMLParser ];
meta = with stdenv.lib; {