nixpkgs/pkgs/development/tools/misc/intltool/default.nix
Vladimír Čunát 80d956caf3
intltool: fix the patch URL, #19487
I hope it's without mistake now. I re-checked the download,
avoiding the binary caches where it would go usually.
2016-10-29 20:42:18 +02:00

30 lines
990 B
Nix

{ stdenv, fetchurl, fetchpatch, gettext, perl, perlXMLParser }:
stdenv.mkDerivation rec {
name = "intltool-${version}";
version = "0.51.0";
src = fetchurl {
url = "https://launchpad.net/intltool/trunk/${version}/+download/${name}.tar.gz";
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.patch?revision=47258&view=co";
sha256 = "17clqczb9fky7hp8czxa0fy82b5478irvz4f3fnans3sqxl95hx3";
})];
propagatedBuildInputs = [ gettext perl perlXMLParser ];
meta = with stdenv.lib; {
description = "Translation helper tool";
homepage = http://launchpad.net/intltool/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}